Re: Possibility to retrace the previous screen
That's because when you use Parent.Name in a gallery, it's trying to get the name of the parent control (the gallery), which it can't do, rather than the name of the parent screen.
You can use the button in your gallery to select the button outside of the gallery, which will get you the name of the screen.
Button in gallery OnSelect = Select(ButtonOutsideofGallery)
Button out of gallery OnSelect = Set(myvar, Parent.Name)