How do I separate the last name only from say Kelvin F Pakaree?

K

Kelvin

I have a column of names which are separated with spaces. I only want the
last name. What formula/e can I use to get only the last name, example MRS
SALOME NAICKER, MR ALISTER KELVIN FRANCIS PAKAREE.
 
B

Bob Phillips

=MID(A1,FIND("~",SUBSTITUTE(A1," ","~",LEN(A1)-LEN(SUBSTITUTE(A1,"
",""))))+1,255)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Top