G Guest Nov 29, 2005 #1 I have a cell with "Joe Blogg" and I want to swap it to"Blogg Joe"... Is there any formular I can Use.
I have a cell with "Joe Blogg" and I want to swap it to"Blogg Joe"... Is there any formular I can Use.
B Bob Phillips Nov 29, 2005 #2 =RIGHT(A1,LEN(A1)-FIND(" ",A1))&" "&LEFT(A1,FIND(" ",A1)-1) -- HTH RP (remove nothere from the email address if mailing direct)
=RIGHT(A1,LEN(A1)-FIND(" ",A1))&" "&LEFT(A1,FIND(" ",A1)-1) -- HTH RP (remove nothere from the email address if mailing direct)