Hi,
I am making a procedure portal for my organisation where one can select Procedure name from Gallery table and based on selection, that particular procedure screen should open.
First I tried to do it via Data table and add hyperlink to that table to navigate to new screen but problem is I can't increase data table row height and can't wrap text due to which procedure name is not properly visible.
Please help in this regard. How can it be done. I am pretty new to Powerapps.
Regards
Aman
Hi @Aman12345 ,
Did you have any joy finding the solution to this issue? If so, please mark the solution for other users to benefit.
Hi @Aman12345 ,
If I understand correctly, the procedures are the items in your gallery and you would like to see the the details of that item when clicking on the name in the gallery.
Assuming you have a form on the screen you want to navigate to, all you have to do in the Gallery, is set a navigate function to the screen that has the form. The item property of the form then needs to be set for Gallery.Selected, so it will show the details for the item in the gallery that was clicked on. Please replace the Gallery part to match the name of your gallery.
Thanks @TheRobRush for quick response.
I got your point but my requirement is slightly different.
I have screen designed in Tabular form. I need that when user touches "Procedure Name" column content, it should navigate to that particular procedure screen.
Screenshot attached for better understanding of my issue.
Thanks a lot for quick response.
put a button in the gallery and set its onselect to
Switch(ThisItem.<Title or whatever name of most unique column is in this dataset>,
"First Value it could be", Navigate(<Screen name it should go to>),
"second Value it could be", Navigate(<Screen name it should go to>),
"third Value it could be", Navigate(<Screen name it should go to>),
"Fourht Value it could be", Navigate(<Screen name it should go to>),
Navigate(<Screen name it should go to if all else is false>))
Michael E. Gernaey
4
Super User 2025 Season 1
danielleh
2
AD-05051919-0
2