splitting cells

D

dleo

I have a list of names in Column A that include both a first name and last
name. No middle initials or suffixes.

Is there a way to easily split the first name and last name into 2 columns?

Thanks in advance
 
A

Alan

Assuming there's a space between the names,

=LEFT(A1,FIND(" ",A1)) for the first name

=RIGHT(A1,LEN(A1)-FIND(" ",A1)) for the surname

Regards,
Alan.
 
R

RonaldoOneNil

Select your column of data and then on the toolbar select Data -> Text to
Columns and follow the steps
 

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

Similar Threads


Top