Hi community,
I have a formula to combine emails from multiple columns, that generally contain multiple linked records (but not always). This REGEX formula works really well for the first 3 columns, but is failing on the final. Any help on what I'm doing incorrectly would be greatly appreciated!
Goal: string together a list of email addresses from multiple columns, with a "comma" between them, but if a column is black, don't add ",".
Current Formula is:
REGEX_REPLACE(CONCATENATE(IF({Moderator Email}, {Moderator Email} & ", "), IF({ADM Primary Email}, {ADM Primary Email} & ", "), IF({Other Panelists Email (Primary)}, {Other Panelists Email (Primary)} & ", "), IF({Other Panelists Alternate Email}, {Other Panelists Alternate Email}) ), ", $", "" )
For some reason, the last
{Other Panelists Alternate Email}. is not comma separated. The result merges all 3 user emails into one long strain......