Field Display

M

Metalteck

I have a column that displays a person's lastname,firstname.
How can I separate it, so that one column is just the last name, and another
is the firstname.
 
T

Trevor Shuttleworth

Use Data | Text to Columns and use the comma as the delimiter

Regards

Trevor
 
C

CLR

Assuming your name is in A1.........
This will pull out the LastName.........=LEFT(A1,FIND(",",A1,1)-1)
And this will pull out the FirstName.. =MID(A1,FIND(",",A1,1)+1,99)

Then just copy these formulas down as far as you have data in column A.


Vaya con Dios,
Chuck,, CABGx3
 

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