How do i separate full names appearing in single cells?

D

daveylee

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
 
Top