Parse out a name

  • Thread starter Thread starter Brenda
  • Start date Start date
B

Brenda

How can I parse out a Name, ex: John J Jones, into First,
Middle Initial, Last Name.

Thanks in Advance!
 
Brenda,

If it's spaces between, just go to Data>Text To Columns and use space as the
delimiter. It will automatically move to separate columns then.
 
Following Bernard's response, here are 3 formula to get them assuming name
in A1
in B1, =LEFT(A1,FIND(" ",A1)-1)
in C1, =IF(ISERROR(FIND(" ",RIGHT(A1,LEN(A1)-FIND(" ",A1)))),"",FIND("
",RIGHT(A1,LEN(A1)-FIND(" ",A1))))
in D1, =RIGHT(A1,LEN(A1)-(IF(ISERROR(FIND(" ",A1,FIND(" ",A1)+1)),FIND("
",A1),FIND(" ",A1,FIND(" ",A1)+1))))
 
Back
Top