N NAVEEN C N New Member Aug 12, 2014 #1 I want to find out the text after comma (,). 23-1-175,0,15,12,0,303 i need a function which will find out "0" after the first comma (,) the text mentioned above. Excel sheet attached with various possible number.. thanks in advance for your help.. Attachments Book2.xlsx Book2.xlsx 8.3 KB · Views: 3
I want to find out the text after comma (,). 23-1-175,0,15,12,0,303 i need a function which will find out "0" after the first comma (,) the text mentioned above. Excel sheet attached with various possible number.. thanks in advance for your help..
Hui Excel Ninja Staff member Aug 12, 2014 #2 B2: =MID(A2,FIND(",",A2)+1,FIND(",",RIGHT(A2,LEN(A2)-FIND(",",A2)))-1) Copy down
S Sinu New Member Aug 12, 2014 #3 NAVEEN C N said: I want to find out the text after comma (,). 23-1-175,0,15,12,0,303 i need a function which will find out "0" after the first comma (,) the text mentioned above. Excel sheet attached with various possible number.. thanks in advance for your help.. Click to expand... simple solution: =FIND(0,<<Cell>>,FIND(",",<<Cell>>,1))
NAVEEN C N said: I want to find out the text after comma (,). 23-1-175,0,15,12,0,303 i need a function which will find out "0" after the first comma (,) the text mentioned above. Excel sheet attached with various possible number.. thanks in advance for your help.. Click to expand... simple solution: =FIND(0,<<Cell>>,FIND(",",<<Cell>>,1))