Split Combined Name

D

dlaw

Cell A contains a name in the format 'first initial last'.
I want to create cells from this: 'first' 'initial'
and 'last'.

Are there formulas for the 3 cells that will accomplish
this?

Thanks for the help.
 
M

mr

Cell A contains a name in the format 'first initial last'.
I want to create cells from this: 'first' 'initial'
and 'last'.

Are there formulas for the 3 cells that will accomplish
this?

Thanks for the help.

Try:
Cell A1 contains a name - John Smith.
The formula for extracting the first name is =LEFT(A1,FIND(" ",A1)).
The formula for extracting the last name is =MID(A1,FIND("
",A1)+1,LEN(A1)).
 

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

Top