How do i separate full names appearing in single cells?

G

Guest

We received an excel spread sheet with full names within a single column. We
need to separate into first and last name columns.
 
D

Dave Peterson

Select the column
Data|Text to columns
delimited by space

Watch out for those names with more than two parts!
 
S

SteveG

If your names are First Name Last Name with a space between them the
for the first name

=LEFT($A$10,FIND(" ",$A$10,1)-1)

for the last name.

=RIGHT($A$10,FIND(" ",$A$10,1))

Copy down your list.

HTH

Stev
 

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