Sep 16, 2020 02:09 PM
I have 2 fields that contain email addresses. The first column contains 1 email address and the the 2nd column contains multiple email addresses. I want to create a 3rd column that combines both fields with the appropriate commas separating each email address. What formula can I use?
Solved! Go to Solution.
Sep 16, 2020 02:11 PM
Try something like:
{Email Field 1} & ", " & {Email Field 2}
(This assumes the multiple emails in the second field are already comma-separated)
Sep 16, 2020 02:11 PM
Try something like:
{Email Field 1} & ", " & {Email Field 2}
(This assumes the multiple emails in the second field are already comma-separated)
Sep 16, 2020 02:26 PM
Thanks for the quick response @Kamille_Parks!