Open a different/specific PowerApp start screen by passing a value in the link/URL - PowerApps

1 year ago
1

Open a different/specific PowerApp start screen by passing a value in the link/URL - PowerApps

For this video, we will pass a parameter in the URL of the PowerApp so that when the app loads it checks the value and starts with a specific screen depending on that value.
Open a different/specific PowerApp start screen by passing a value in the link/URL - PowerApps

Switch statement used in the video:
Switch(Param("WhatScreen"),
"1", Screen1,
"2", Screen2,
"3", Screen3
)

Loading comments...