I have a column called AreaofImprovement in my collection. I would like to patch selected items from a combo box to this column. But how do we patch a table (selected items from combo box) to a column in collection? When I used below snippet and trying to patch, it patches only the last selected item from my combo box(may be overwriting previous selected values) but not all. Please help!
ForAll(
ComboBoxImprov.SelectedItems,
Patch(
ColOTJSession,
First(ColOTJSession),
{AreaofImprovement: ThisRecord.Value}
)
);