Gmail pack multiple client email problem, no comma

Hi I am using the below code to try and send emails to multiple customers, as well as my leads. The problem is that Clients.Email will not put a comma between the emails and wont send an email to either one. is there a way to get it to put a comma between each email so that google recognizes it?

Concatenate(thisRow.[Active Jobs].Clients.Email,“,”,thisRow.[Active Jobs].Lead.Email,“,”,thisRow.Canvas)

hi @Phil_Purdy1 ,

would you be so kind to take 5 min to add a sample doc?

cheers, christiaan

It has customer information. Can’t share it.

Try thisRow.[Active Jobs].Clients.Email.join(“,”)

Bamm nailed it! Thank you so much!