Hello ,
I was wondering if anybody can help me with this.
I have a combo box that I have linked to our 365 users, so we are able to select multiple users. Then once the people are selected I save their emails into a collection. What I want to do is, on my submit button to have all those emails that I have saved to my collection to go to my SharePoint list under the Column EmaillCC1, but all in on row and in one field so an example, if my collection has 3 emails, bsmith@example.com , tray@exacmple.com and smark@example.com. I want my SharePoint list so show under the column EmaillCC1 all those 3 together separated by a comma. Is that possible ?
this is what I have done so far for the combo box

And this is my submit Button
Patch(
NewHireInfo,
Defaults(NewHireInfo),
{
FirstName: FirstName2.Text,
LastName: LastName2.Text,
StartDate: StartDate2.SelectedDate,
PhoneNumber: PhoneNumber2.Text,
PersonalEmail: PersonalEmail2.Text,
Branch: Branch2.Selected.Result,
Address: Address2.Text,
Address2: SecondAddress2.Text,
TrainingDate: TrainingDate2.SelectedDate,
Delivery: Deliverymethod2.Selected.Value,
Manager: Manager2.Selected.Result,
EquipmentNotes: Notes2.Text,
JobType:JobType2.Selected.Value,
JobTitle:JobTitle.Selected.Result,
NewJobTitle:NewTitle.Text,
BranchCode:BranchCode2.Selected.Result,
NewBranchAddress:NewBranchAddress2.Text,
EmailCC1:NHCC1.Selected.Result
}
);
Reset(NHCC1);
Navigate(NewHIreScreen6);
Any Help I would really appreciate it.