Hi @Anonymous ,
Could you please share a bit more about your scenario?
Do you want to patch multiple selections from your ComboBox back to your SP list as separated rows?
Further, could you please share a bit more about the formula you typed within the Items property of the ComboBox? Is it set to a Distinct formula? Or is it bind to a Person type column from a SP List?
Actually, it is not necessary to collect the multiple selections from the ComboBox into a collection firstly. I have made a test on my side, please consider take a try with the following workaround:
Set the OnSelect property of the "Submit" button to following:
ForAll(
ComboBox3.SelectedItems,
Patch(
'Shift Turn Registration',
Defaults('Shift Turn Registration'),
{
Title: 1,
TeamMember: ColumnNameFromComboBox3
}
)
)
Note: The ColumnNameFromComboBox3 represents the column from the ComboBox3.SelectedItems formula, which you used as display column value within the ComboBox3.
In addition, if the Items property of the ComboBox3 is set to a Distinct formula, please modify above formula as below:
ForAll(
ComboBox3.SelectedItems,
Patch(
'Shift Turn Registration',
Defaults('Shift Turn Registration'),
{
Title: 1,
TeamMember: Result
}
)
)
If the ComboBox3 is bind to a Person type column in a SP List, please modify above formula as below:
ForAll(
ComboBox3.SelectedItems,
Patch(
'Shift Turn Registration',
Defaults('Shift Turn Registration'),
{
Title: 1,
TeamMember: DisplayName
}
)
)
Please consider take a try with above solution, then check if the issue is solved.
Best regards,