I need to swap last name, first name in a cell to first name last

B

Bob Phillips

=RIGHT(A1,LEN(A1)-FIND(",",A1)-1)&" "&LEFT(A1,FIND(",",A1)-1)

--
HTH

Bob Phillips

(replace somewhere in email address with googlemail if mailing direct)
 
B

Bob Phillips

A bit shorter alternative

=MID(A1&" "&A1, FIND(",",A1)+2,LEN(A1)-1)

--
HTH

Bob Phillips

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