Hi @JHChoi81 ,
Based on the screenshot that you mentioned, I found that your second Gallery (Gallery1) has been bind to the selected item in your First Gallery (FixtureListMain_2), right?
According to the issue that you mentioned, I think this issue is related to your UpdateIf function. When you execute your UpdateIf function successfully, your FixtureMasterList data source would be refreshed, then your First Gallery FixtureListMain_2 would also be reset. So the FixtureListMain_2.Selected formula would be reset to the first record in your FixtureListMain_2 Gallery.
As an fixed solution, please take a try with the following workaround:
Set the OnSelect property of the FixtureListMain_2 Gallery to following:
Set(CurrentSelectedItem, FixtureListMain_2.Selected)
Set the Items property of the Gallery1 (second Gallery) to following:
Filter(FixtureMasterList, ID = CurrentSelectedItem.ID)
remove the formula from the Default property of the Gallery1.
Please consider take a try with above solution, check if the issue is solved.
Best regards,