Hi @kbpartha24 ,
Do you mean that after you submit an edit form, the gallery's selected item will change?
Actually, the theory is the same as the issue that you posted.
Since the gallery's Items is AddColumns(..), after you submit a record, the gallery's selected item will be refreshed.
To deal with this problem, you just need to save the selected item as a variable. Set your edit form and display form's Item to this variable.
Even if the gallery's selected item will be refreshed after you submit a record, it will not refresh your variable.
I've made a similar test for your reference:
1)set the gallery's OnSelect:
Set(CurrentSelectItem,ThisItem)
set the gallery's Default:
CurrentSelectItem
2)set the edit form's Item:
LookUp(datasource,ID=CurrentSelectItem.ID)
set the display form's Item:
LookUp(datasource,ID=CurrentSelectItem.ID)
//please replace with your data source name, your unique field, I use ID as an example
Then your display form's item will not change after you submit form.
Best regards,