Hi all,
I am trying to patch a Combobox back to my SharePoint list. Since I allowed multiple selections, I started getting the error message
My list name is "Harris Document Testing 5000 records", and the Combobox name is ComboBox2.
Patch(
'Harris Document Testing 5000 records',
{
Title: ComboBox2.Selected.Title,
Lookup: {
'@odata.type': "#Microsoft.Azure.Connector.SharePoint.SPListExpanded.Reference",
Id: LookUp(LookUpFieldResponse, ComboBox2.Selected.Title).Id,
Value: LookUp(LookUpFieldResponse, ComboBox2.Selected.ID)
}
}
);
