Here is a way to redirect to a specific screen in Power Apps (Canvas
App)
The final URL looks like below https://apps.powerapps.com/play/xxxxxxxx-2c29-4c7e-b18e-a900e34c0e12?title=issueWithPhone
Get the App URL:
- Go to make.powerapps.com
- Select your canvas app. Click on three ellipses(...) and go to details
- copy the app URL
Add the changes in Canvas App to redirect to a specific screen or record:
- On App Start,take a variable as below- Set(varTitle,Param("title")).
- Use Navigate Screen to redirect to a specific screen the screen as below-If(!IsBlank(varTitle),Navigate(ViewMyRequest)).
- We can make use of that variable to filter data and map it to form/gallery as per the requirement
No comments:
Post a Comment