Hi @pes10350 ,
Do you mean that using this formula to update successfully?
Patch(RequiresPPECollection,ReviewGallery.Selected,{Date0: Today_Label.Text})
I suggest you not use "ReviewGallery.Selected" to represent the item that you want to update.
"ReviewGallery.Selected" will return an item not only with the fields of the collection, but also the control value inside the gallery, like Separatorvalue.
You could save this as a collection to see.
ClearCollect(collection1,ReviewGallery.Selected)
To solve this problem, I suggest you use LookUp/Filter to filter data from data source based on gallery.Selected.
Could you tell me the unique field in your collection?
I assume that it is the ID field.
Try this:
Patch(RequiresPPECollection,LookUp(RequiresPPECollection,ID=ReviewGallery.Selected.ID),{Date0: Today_Label.Text})
You could also replace ID with other field name.
Best regards,