
I have a series of checkboxes that are populated by values from a choice column in SharePoint. The choice column allows multiple values. If the user updates the checkbox in the app I want to Patch those updates back to the choice SharePoint column.
The original values from the SharePoint column are put into a collection OnStart: 'colfaitems' When the user updates check box selections, I can update the collection, then send the updated values back to SharePoint. How do I write that in a Patch Function?
Thanks in advance.
I got it
ForAll(
colfaitems,
Patch(
KYOJDCP,
Defaults(KYOJDCP),
{
'Focus Areas': colfaitems
}
)
);