06/08/2020

Redirect to a specific screen in Power Apps (Canvas App)


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:

  1. Go to make.powerapps.com
  2. Select your canvas app. Click on three ellipses(...) and go to details
  3. 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