• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Find the text

NAVEEN C N

New Member
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

B2: =MID(A2,FIND(",",A2)+1,FIND(",",RIGHT(A2,LEN(A2)-FIND(",",A2)))-1)

Copy down
 
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..
simple solution:
=FIND(0,<<Cell>>,FIND(",",<<Cell>>,1))
 
Back
Top