I have 2 screens in my PowerApps Application. Screen 1 is the landing page and Screen 2 is a form the user will submit.
Screen 1: Has 2 buttons, CommRequest & SalesRequest. Clicking on both these will take me to Screen2 which has a form.
Screen 2: In my form, I have a label where I need to get the value of the button that was clicked on Screen 1. Example: If CommRequest button was clicked, the Label should say "Communications Request". Similarly, if SalesRequest is clicked the label in screen 2 should be "Sales Request".
In the form, I have a Request Category dropdown that stores both CommRequest & SalesRequest options. Based on the value displayed in my Label I need to filter my DropDown to split my request category.
Data from my source: Choices([@'Requests_Master'].RequestCategory) is a Multi Select Choice Column in SharePoint. To Submit my form I am using the Patch Statement.
Please let me know how I can achieve this. Thank you.