Excel-extracting names into seperate elements

Closed
GoldBar - Feb 2, 2011 at 03:12 PM
 Steveinuk - Feb 3, 2011 at 03:35 AM
Hello,

I have several hundred names in an excel file written like this Doe, John A and I want to seperate them into 2 columns with first names in one column and last names in another. Is there a way to extract the first word from each cell (their last name) into a cell? Or even better, can I get them separated and put into 2 seperate cells?

Thank you in advance!

Related:

1 response

=LEFT(F11,FIND(",",F11,1))
=RIGHT(F11,LEN(F11)-(FIND(",",F11,1)+1))
0