Looking for some help with formula to reverse and parse data. I have with the help of the community used different method successfully; but I am unable to get this to work on this workflow.
Sample data Set:
Resident
Celeste Junior, Carlos Eduardo
VACANT
Le, Jenny
Carrillo Victorio, Lizbeth
REGEX_Replace([Resident],"(.*), (.*)", "$2 $1") gets me to the below result
New Column
Primary
Carlos Eduardo Celeste Junior
VACANT
Jenny Le
Lizbeth Carrillo Victorio
Desired Result (two columns if there are 2 names. I tried in two steps using trim right the second name from [Primary] to new column [Resident 2] cannot seem to make it work.
Primary Resident 2
Carlos Eduardo Celeste Junior
VACANT
Jenny Le
Lizbeth Carrillo Victorio
Any suggestions would be greatly appreicated.
Thanks
SS