Hi All,
I'm running into the strangest issue with the Param() function as it doesn't seem to capture the passed value. The URL I'm using looks like this:
https://apps.powerapps.com/play/[appId]?tenantId=[tenantId]?Document=[TextValue]
The code I have in my OnStart and StartScreen wasn't working as the users are not navigated to the expected screen (screen2), showing the expected data (variable). I then added a label to see what value was passed with Param (Document) and it seems to be a blank, regardless of what I pass for TextValue.
OnStart = If(IsBlank(Param(Document)),true,Set(variable,LookUp([DataSource], Title=Param(Document)))
StartScreen = If(IsBlank(Param(Document)),Screen1,Screen2)
TSLabel Text = Param(Document)
What am I missing?