I'm building an app which has a main menu screen, one of the menu items is a link to a page with a form which adds an entry to a Sharepoint list. On addition of this entry a mail is sent to a user with a link, I'm trying to have this link do 2 things :
- Send the user directly to the entry form page instead of the main menu
- Have this entry form change to "view" mode and filter the to show the record just submitted
I have in the past done both of these individually, but I cannot for the life of my make a link that does both. I'm currently using :
https://apps.powerapps.com/play/xxxx?recordid=15scrn=1
I have OnStart setting up global variables to pull in these parameters, and StartScreen doing an If on the Param("scrn") value, at the moment I have the start screen switching correctly but I'm not 100% sure how to filter on the recordID value in the second screen.
Any assistance appreciated.