Forum Discussion
sumershanbhag
Oct 16, 2024Copper Contributor
Patch Multiple Items in SP list online
Hello everyone, I am trying to patch multiple values in a single SP online list. I have a Add New Button in Form where it stores a collection of 4 column which I had set up in a data table. When I a...
deanshepherd
Oct 17, 2024Brass Contributor
if you allready have cites in the sharepoint list and you just want to update that cities row then you will need to throw a lookup in there somthing like this
ForAll(CollectionOfChanges, Patch(Datasource, LookUp(Datasource, ID = ThisRecord.ID), ThisRecord))
ForAll(CollectionOfChanges, Patch(Datasource, LookUp(Datasource, ID = ThisRecord.ID), ThisRecord))
sumershanbhag
Oct 17, 2024Copper Contributor
Using ForAll is giving me multiple SP list items. I tried by removing the ForAll and I got single item.