Function for all Characters after the :

  • Thread starter Thread starter mcbe
  • Start date Start date
M

mcbe

I need a formuls that will take all of the Characters after a colon in
a cell.
I Have:
B3 = LastName : Jones
B4 = LastName : Anderson
I need:
R3 = Jones
R4 = Anderson

Thanks in advance for the help.
Mike3108
 
Try this:

=MID(B3,FIND(":",B3)+2,255)

Copied down as needed.

It appears that your second example has a double space after the ":". If the
number of spaces is variable try this version:

=TRIM(MID(B3,FIND(":",B3)+1,255))

Biff
 
I need a formuls that will take all of the Characters after a colon in
a cell.
I Have:
B3 = LastName : Jones
B4 = LastName : Anderson
I need:
R3 = Jones
R4 = Anderson

Thanks in advance for the help.
Mike3108

Thank you to Dave Peterson and T. Valko.
I tried all 3 equations and they all seem to work GREAT.
Thanks Again.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top