Trying to create a URL that links to the loged in users profile page. The profile page is not set by ID but by People field Email. I set param for screen but when putting together it is only taking me to the home page of the app not the specified page.
App Setting: If(Param("prmScreen")="ParticipantDirectLinkTesting",Navigate(ParticipantDirectScreen1_1,ScreenTransition.None)
ParticiapantDirectScreen.OnVisible:
Set(varParticipant,Param("ParticipantName"))
Form on ParticipantDirectScreen:
First(Filter('LDP Participant Data',Text('Participant Name'.Email)=varParticipant))
Failing url:
https://web.powerapps.com/apps/[AppID]?prmScreen="ParticipantDirectLinkTesting"&ParticpantName=[my email]
Any ideas on how to make url go to participant screen to thier profile?