Hi all,
I'm building an app where I'm first collect a couple of SharePoint list items into a local collection, called "Col_TOBEAPPROVED".
The users can edit this collection inside my app.
When the are done with editing the multiple items, the "Col_TOBEAPPROVED" collection should be patched in to the original SharePoint list ("workregistration").
I was trying to do this with the follow statement, but it is not working:
ForAll(
Col_TOBEAPPROVED,
Patch(
workregistration,
LookUp(
workregistration,
Id = Col_TOBEAPPROVED.ID
),
{
Approved:Col_TOBEAPPROVED.Approved
}
)
)
If someone of you have a clear solution or idea, I'm open for any suggestion.
Thanks in advance.