Firstname Lastname Field, Split two cells

A

Anthony Smith

Good Morning Everyone,

We have an Excel file where the contact name is in ONE FIELD. We want to
seperate the FirstName and LastName and put them in TWO FIELDS. Can anyone
tell me how to do this?

Right now this is how the database is:

FieldNames
Contact
Anthony Smith

This is what I'd like to acheive:
FieldNames
FirstName LastName
Anthony Smith

Thanks!

Sincerely,
Anthony Smith
In God We Trust!
 
M

Max

One way ..
Select the range of contact names
Click Data > Text to Columns (delimited)
Click Next, check Space > Finish
 
G

Guest

Parsing names can be complicated.....but, if all of the values are in the
form: Firstname (space) Lastname

Try something like this:
Select the list of names

Then, from the Excel main menu:
<data><text-to-columns>
Check: Delimited.......click [next]
Check: Space.......click [finish]

So
A2: Anthony Smith

will become
A2: Anthony
B2: Smith

Is that something you can work with?
***********
Regards,
Ron

XL2002, WinXP
 
D

David Biddulph

Another way is
=LEFT(A3,FIND(" ",A3)-1) for the first name,
and =RIGHT(A3,LEN(A3)-FIND(" ",A3)) for the last name.
 
A

Anthony Smith

Thank you, thank you, thank you. that Data >Text to Columns and space
worked perfectly!

Thank you all for the responses. Have a blessed weekend!
 

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