Thread: splitting cells
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Alan Alan is offline
external usenet poster
 
Posts: 492
Default splitting cells

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.
"dleo" wrote in message
...
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