Splitting the contents of a cell?

D

Dan B

Hi,

I have several columns of data that contain data such as:3001001E:Name


I want to keep what is on the right side of the colon. How could I do this
with a function?

Thanks.
 
V

vezerid

Dan,
try the following formula, which assumes that your text is in A1.
MID(A1, FIND(":", A1)+1, LEN(A1)

HTH
Kostis Vezerides
 
R

Ron Coderre

For 3001001E:Name in Cell A1
B1: =RIGHT(A1,LEN(A1)-(SEARCH(":",A1)))

Does that help?

***********
Regards,
Ron
 
D

Dan B

That worked perfectly. I would like to understand the logic behind that
function. If you get a minute, could you give me a quick explanation.

Thank you so much!!
 
Top