Do you want to use a formula or an Excel menu
command?
Hello Mark!
I would like to use a formula if possible.
Thanks Again,
Jonathatn
Sorry, missed the 2nd requirement...
Use this instead...
=LEFT(A3,IF(ISNUMBER(FIND("/",A3)),FIND("/",A3),))
Hello Again Mark!
What I need the formula to do is strip out the remaining text and place it in an adjacent cell. For example, if B2 contains 10456/1104578, in c2 I need the 1104578. The problem is that the slash is not always in the same place. So first I need to search the string to see if contains the / and then parse out the data to the right of the slash. If there is no slash, return a blank.
Thanks for the speedy response.
Jonathan McGuire
I misconstrued "parse out". Use this...
=RIGHT(A2,IF(ISNUMBER(FIND("/",A2)),LEN(A2)-FIND("/",A2),))
=RIGHT(A2,IF(ISNUMBER(FIND("/",A2)),LEN(A2)-FIND("/",A2),))
Thanks a million Mark! I apologize for not being clear in my initial requests, you know how us users are!
Have a great day,
jonathan