Hello,
I am trying to figure out how to open a SharePoint link in Power Apps. Here's some context to my scenario:
Background:
Type: Standalone Power App
Data source: SharePoint List
What I was able to figure out so far:
1) Insert > Icons > Share
2) Configure the OnSelect property of "ShareIcon1" to:
Set(varCopyLink,ThisItem.'Link to item')
3) Insert > Input > Text input
4) Configure the Default property of "TextInput1" to:
varCopyLink
5) Now when I copy and paste the link generated in "TextInput1" on a web browser, it displays the item in SharePoint.
Problem:
Is there a way to have this link open the item in Power Apps?
Thank you in advance.