Extracting firs name and last name

J

Josh

Hi folks,

in column A I have lists of lastname then a comma and then
first name....

Like Johnson , Alex

I like to be able to use a formula in columns B and C so
that only the last name appears in column B and only first
name in column C.

Any idea ?

Thanks
 
T

tjtjjtjt

You may want to try the Text to Columns feature, but these two formulas do
what you are asking:

First Name:
=RIGHT(A1,LEN(A1)-FIND(" ",A1))

Last Name:
=LEFT(A1,FIND(",",A1)-1)

tj
 

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

Top