Hello,
I'm trying to assign the value of my MasterID for all items of my collection at the moment I patch my collection data in my SharePoint list.
But I don't know how I should proceed.
This is the code I save data to my list:
SubmitForm(SharePointForm1);;
If(
CountRows(CollectionObjUp) > 0;
Patch(
'Plantilla Objetivos';
CollectionObjUp
)
);;
Clear(CollectionObjUp)
Maybe can be done using some kind of "Update" function for change the value of my columns?
SubmitForm(SharePointForm1);;
Update(CollectionObjUp;MasterID=SharePointForm1.LastSubmit.ID);;
If(
CountRows(CollectionObjUp) > 0;
Patch(
'Plantilla Objetivos';
CollectionObjUp
)
);;
Clear(CollectionObjUp)
Many thanks in advance,
Marina.