Hi @hexarthrius ,
Could you tell me
1)the gallery's Items in Main Menu Screen?
2)the form's data source in Edit Screen?
You need to make sure that these two properties are the same table.
You need to set the edit form's Item: gblGalSystemsSelected
Also, set the edit button's OnSelect in Details Screen:
EditForm(formname in edit screen);Navigate('System Edit Screen')
//make sure the form's mode is edit
If the problem still exists, try to set the edit form's Item:
Lookup(DataSource, ID = gblGalSystemsSelected.ID)
//filter the item that has the var's same ID
Or you could consider not using variable.
You could use "Galleryname.Selected" to represent the selected item in the gallery directly.
Just need to set the the edit form's Item:
Galleryname.Selected
//please replace with the gallery name in Main Menu Screen
Best regards,