Hi,
I have a column named attester.
with emails such as as below in one col.
John.Smith@name.com; Jane.Doe@name.com
How can I parse these in a formula for a new column to be like:
John Smith, Jane Doe.
Im trying this but only works for 1 name: ReplaceChar(REGEX_Replace(REGEX_Replace([Attester], ".*<(.+)>.*", "$1"), '(.+)@(.*)', '$1'),'.',' ')