Hi @KT61,
if u want to show a specific record from a gallery in a form please try the following
On your gallery choose the ,,OnSelect“ property and add the following line of code:
Navigate(ScreenName)
For ScreenName you should take the name of your screen where the form is placed.
you can add a button or icon to the gallery from the ,,insert“ tab for selecting the record. On this button / icon choose the ,,OnSelect“ property again and type in the following line:
Select(Parent)
Assume that the gallery name is gallery1 you can add the following line of code in the ,,item“ property of your form.
gallery1.Selected
now you should be able to Display the fields of the selected gallery record.