Link to home
Start Free TrialLog in
Avatar of happyexchange
happyexchange

asked on

EXCEL 2007

Hi is there a way to split a name in Excel 2007. so happy exchange i need in one cell happy and exchange in another cell in excel.

Avatar of zorvek (Kevin Jones)
zorvek (Kevin Jones)
Flag of United States of America image

Find the first name in a string:

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

Find the last name in a string containing only two names:

   =MID(A1,FIND(" ",A1)+1,999)

Kevin
If you have that data in A1 then you can get the first word in B1 with this formula

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

and in C1

=REPLACE(A1,1,FIND(" ",A1),"")

regards,barry
ASKER CERTIFIED SOLUTION
Avatar of pjaguilar
pjaguilar

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial