Hi,
I have a Grid like structure in powerapps. There is one Edit/Exit button having below code for patch:
Patch('SPlist',
UpdateIf(colGridContainer, Created in Filter(GalleryGrid.AllItems,ChkBox.Value=true).Created,
{'Col1:col1update.Text)
Now, when I click all the checkbox, all N number of records are updated with values perfectly patched in SP list, but while checking individual checkboxes for each record, it somehow still updating all N records instead of selected one row only in SP list.
Please check and advise on this.