Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How to separate 1st and Last names in 1 cell (in numbers) to 2 cells

I have about 1000 names in a numbers spreadsheet with information in separate columns such as phone numbers etc.

But the names, 1st and last, are in 1 cell with a space between them. How do I separate them into 2 cells?

Thank you so much for your help User uploaded file

MacBook Pro, Mac OS X (10.6.6)

Posted on Mar 17, 2011 12:17 AM

Reply
2 replies

Mar 17, 2011 12:29 AM in response to Fluffymind

Fluffymind wrote:
I have about 1000 names in a numbers spreadsheet with information in separate columns such as phone numbers etc.

But the names, 1st and last, are in 1 cell with a space between them. How do I separate them into 2 cells?

Thank you so much for your help User uploaded file


Names in column A.
All names are of the pattern xxxxxxx xxxxxxxxx (two names only, separated by one space)

In the column where you want first names:

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

In the column where you want last names:

=MID(A,FIND(" ",A)+1,LEN(A)-FIND(" ",A))

Regards,
Barry

How to separate 1st and Last names in 1 cell (in numbers) to 2 cells

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.