assuming last names never have a space in them we can return the string to the right of the last space as the last name, and follow with the first name with this monstrosity courtesy of scott:Originally Posted by Maistrye
=RIGHT(A1,LEN(A1)-FIND("~",SUBSTITUTE(A1," ","~",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))&", "&LEFT(A1,FIND("~",SUBSTITUTE(A1," ","~",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))
Bookmarks