Fix the order of the last name and first name

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I fix the order of the names, when the last name is first and the
first name is second, separated by a comma.
 
Zami,

Another formula option in addtion to Frank's . . .

=MID(TRIM(H38),FIND(" ",TRIM(H38),1)+1,LEN(TRIM(H38)))&"
"&LEFT(TRIM(H38),(FIND(",",TRIM(H38))-1))

turns "Bowman, Frank" into "Frank Bowman".
 
Back
Top