I've created a PowerApp and want people accessing the app to just see the new form and not the gallery for existing requests in it. How can I do that?
To add some additional detail for clarity. When you go to details and grab the web link it takes you to the app which shows the gallery and the app. I'd like to be able to take my users to the app in new form state.
You'll need to pass a parameter in the URL. To do that, you would send them a URL that looks something like this
https://web.powerapps.com/apps/[APP GUID]?NewScreen=true
On the app OnStart(), you'll use a Set() to grab that param like this
Set(StartScreenArg,Param("NewScreen"))
Then you can use it as you please. You don't necessarily have to collect it if you don't want to since you're just using it to navigate at the beginning of the app, but I'd consider this a best practice in general.
If(StartScreenArg="true",Navigate(Screen1,None))
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
259 | |
217 | |
76 | |
38 | |
34 |
User | Count |
---|---|
331 | |
224 | |
125 | |
69 | |
55 |