Announcements
Hi,
I am trying to share a deep link with someone.
How do I form it? My record using variable "gblRecordID" (which = 10 for this sample record)
How do I make a link to this directly?
I do https://apps.powers.com..etcetc........?RefID=gblRecordID .. and it links to the homepage of my app.
please help.
Hi @wonka1234 ,
All info can be found in this article: https://learn.microsoft.com/en-us/power-platform/power-fx/reference/function-param#param
@BCBuizer I was looking at this answer, it doesnt seem to work for me -
https://powerusers.microsoft.com/t5/Building-Power-Apps/deep-link-to-specific-record/td-p/498941
Can you please share what you currently have?
@BCBuizer
On App I have this on the OnStart property--
Set(gblRecordID,Value(Param("recordid")))
on the Onselectpropersty of next arrow on BrowseGallaery I have -
Set(gblRecordID, ThisItem.ID);
I have this on the EditForm1 Item Property -
LookUp('Data Source',ID=gblRecordID)
and the url is like this -
https://apps.powerapps.com/etcetcetc&recordID= " & gblRecordID
I would like this url to point to the EditScreen1 , Edit form1_1 for the given record ID
Parameters are case sensitive, but in your case I see a mix of "recordid" and "recordID", which will cause issues.
Another thing that seems to be missing is that the user is not navigating to the right screen, correct?
To do that, set the App.StartScreen property to:
If( IsBlank(Param("recordID")), HomeScreen, EditScreen1 )
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 542 Most Valuable Professional
Haque 206
Kalathiya 201 Super User 2026 Season 1