Hi,
I am using a gallery view so that a user can either Confirm or Reject a row/record using two toggle buttons that patch the result of the toggle to a column. This then in turn kicks off a MS Flow which copies the record to a different list and deletes it from this list.
Up until recently I believe it was behaving as expected but I am now seeing the following behaviour; if I confirm or reject the record on the first item in the gallery it changes the toggle on all items, however if I do the same for any other record it only updates that record.
Worth noting I have a relatively complex Sort and filter on the gallery that gives me a delegation warning but I am only working on a very limited number of records so don't think this is the issue.
Has anyone else seen this issue?
Example of patch which is Reject OnCheck:
Patch('Match List_1',First(Filter('Match List_1',ID=ThisItem.ID)),{Reject_x003f_:true})Example of patch which is Confirm (also patches a date):
Patch('Match List_1',First(Filter('Match List_1',ID=ThisItem.ID)),{Confirm:true,Actual_x0020_Date:DatePicker1.SelectedDate})If it is working for every other record, why would the ThisItem ID for the first record be causing a problem?
Thanks