Assuming that names contain first and last name only...
First name:
=LEFT(A1,FIND(" ",A1)-1)
Last name:
=RIGHT(A1,LEN(A1)-FIND(" ",A1))
Hope this helps!
In article ,
"Simon" wrote:
Can anyone help??
I have a name in cell A1, but I want to split the name into cells A2 and A3.
eg, A1 = Simon Thomas, I want B1 to = Simon & C1 to = Thomas
Does anyone know the formula for this??
Thank you in advance
|