1. Setting the Default Value of the ComboBox Based on SharePoint Data
set the DefaultSelectedItems property of the ComboBox (vComboLLC in your case) to match the data stored in the SharePoint list.
Split(LookUp(List1, 'Email1' = User().Email).TextColumn1, ", ")
2. Updating the ComboBox Selections to SharePoint:
modify the OnChange property to update the SharePoint field:
Patch(List1,
LookUp(Filter(List1, 'Email1' = User().Email), 'Email1' = User().Email),
{
'TextColumn1': Concat(vComboLLC.SelectedItems, Value & ", ")
}
)
3. Removing the Trailing Comma (Optional):
Patch(List1,
LookUp(Filter(List1, 'Email1' = User().Email), 'Email1' = User().Email),
{
'TextColumn1': Left(Concat(vComboLLC.SelectedItems, Value & ", "), Len(Concat(vComboLLC.SelectedItems, Value & ", ")) - 2)
}
)
Try and let me know.