Dear All,
It would be appreciated if you could help.
I am trying to store multiple selected values of a combo box (ProductLineCombo) in the Sharepoint list.
However, none of the results of this field were transferred to SharePoint.
The setting of 'Product Line' in Sharepoint is Choice, with multiple selections allowed.
I tried to set it as text, but it was not working. Is there any way I can save it as text, for example, "A,B"? thank you.🙏
Patch(
'Data Collection',
Defaults('Data Collection'),
{
'Product Line':Concat(ProductLineCombo.SelectedItems,",")
}
);