Hey I have a PowerApp form to submit and edit Sharepoint list items.
I have added first screen to my app where the user is presented with a search bar where he/she can type a code and see if a list item exists or not:
However this first screen presents issues for direct links to existing items:
I would like in both of these cases to skip the first screen and go directly to the view-mode of the form for the specific item.
Is this achievable?
hey @uwenagel
So I am talking about clicking on the list items here:
The format of the link behind each item is as follow:
https://xxxxx/sites/xxxxx/Lists/xxxListNamexxx/DispForm.aspx?ID=5&pa=1&e=ZPoMln
Can you provide the link that is called when you click on the item in SharePoint?
Is the app called with this link? If yes, is there a parameter passed at the end of the link in the following way:
...?MyParam=xxx
Then you could use this parameter in the App.StartScreen property
If(
!IsBlankOrError(Value(Param("MyParam")),
SecondScreen,
FirstScreen)
)
to navigate to the correct screen.
Otherwise you have to create a link that provides this parameter.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
WarrenBelz
110
Most Valuable Professional
MS.Ragavendar
77
stampcoin
52