Good morning
I have a gallery control that is filtering records from a SP list based on a status value and I have the following set on the items value:
Filter('Requests-June23', Progress.Value ="In Progress")
This works fine and I now wish to add functionality to edit the record that is being displayed and the user selects. I tried utilising my existing functionality by adding an edit icon and adding the below (that allows me to edit a selection on an another screen thus 😞
OnSelect - ResetForm(NewRequestForm);EditForm(NewRequestForm);Navigate(NewRequestScreen)
However when I use this and run the app the above returns the first record from my SP list and not the record that I selected. Could someone point where I am going wrong please
Thanks
J