Hi I use this formula as of now. It works good with first name last name first.
It doesn't work good with if a name has a middle initial. Can something be added to this formula to change that the right way also.
=IF(B4="","",IF(ISNUMBER(SEARCH(" ",B4))=TRUE,RIGHT(B4,LEN(B4)-FIND(" ",B4))& " " & LEFT(B4,FIND(" ",B4)-1),B4))
Example person with middle intial
Jose J Aruga
J Aruga Jose <--- returns this
Aruga J Jose <--- need it to return this when it sees a middle initial. possible?
It doesn't work good with if a name has a middle initial. Can something be added to this formula to change that the right way also.
=IF(B4="","",IF(ISNUMBER(SEARCH(" ",B4))=TRUE,RIGHT(B4,LEN(B4)-FIND(" ",B4))& " " & LEFT(B4,FIND(" ",B4)-1),B4))
Example person with middle intial
Jose J Aruga
J Aruga Jose <--- returns this
Aruga J Jose <--- need it to return this when it sees a middle initial. possible?