Skip to main content

Notifications

Community site session details

Community site session details

Session Id : IJujwqT7INB+6+Iy5D63eH
Power Apps - Building Power Apps
Answered

Deep Linking- Multiple Parameters

Like (0) ShareShare
ReportReport
Posted on 21 Jul 2023 12:37:37 by 28

I have four screens that I want to deep link in power apps. When a form is submitted the approver gets an email with a link to the particular screen

My conditions are

  • If Param("ScreenID") = "approval" then It should navigate to  GI Approvals Screen 
  • If Param ("PCVScreenID") = "approval" then It should navigate to  PCV Approvals Screen 

My StartScreen parameter looks like below
Screenshot (3).png

The OnSuccess for the GI form is working and goes to the correct screen

 

Screenshot (4).png

 

The OnSuccess for the PCV form is not working and goes to the welcome screen

Screenshot (5).png

 

What could be the problem?

 

  • timl Profile Picture
    35,013 Super User 2025 Season 1 on 01 Aug 2023 at 10:35:40
    Re: Deep Linking- Multiple Parameters

    Hi @NyarOtieno - I'm glad your problem is solved.

    Perhaps you could mark @rikdekoning's post (message 4) as the solution, since it is his formula here that solves the question.

  • rikdekoning Profile Picture
    281 on 26 Jul 2023 at 12:52:30
    Re: Deep Linking- Multiple Parameters

    No problem, glad to be of help.

    Please don't forget to mark the answer as solution ðŸ˜Š

  • Verified answer
    NyarOtieno Profile Picture
    28 on 26 Jul 2023 at 12:51:16
    Re: Deep Linking- Multiple Parameters

    Hi,

    published and reopened my app and the link for the PCV form is now working ðŸ˜Š
    Thank you for your help

  • rikdekoning Profile Picture
    281 on 26 Jul 2023 at 12:43:34
    Re: Deep Linking- Multiple Parameters

    Can you add a label to your welcome screen and set the Text attribute to Param("PCVscreenID")? That way, you can see if your parameter is pushed correctly to your app

  • NyarOtieno Profile Picture
    28 on 26 Jul 2023 at 12:40:02
    Re: Deep Linking- Multiple Parameters

    Hi,

    thank you for your help

    I have replaced and used the same link format as GI Approval. I have also removed the nested if statement but the PCV form still goes to the welcome screen

  • rikdekoning Profile Picture
    281 on 26 Jul 2023 at 12:16:15
    Re: Deep Linking- Multiple Parameters

    What if you use the same link format as your GI Approval (including the TenantID parameter), but replace the screenID parameter with the PSVscreenID parameter?

    Also, try to remove the second If() statement, so it looks like this:

    If(
    	Param("screenID") = "approval",
    	'GI Approvals'
    	Param("PCVscreenID") = "approval",
    	'PCV Approvals',
    	'Welcome Screen'
    )

     Nested If() statements do fail sometimes, so this is a cleaner way of putting it together

  • NyarOtieno Profile Picture
    28 on 26 Jul 2023 at 11:52:25
    Re: Deep Linking- Multiple Parameters

    Hi,

    I have removed the & symbol in front of the PCVscreenID parameter but the PCV form still goes to the welcome screen

  • rikdekoning Profile Picture
    281 on 21 Jul 2023 at 12:58:48
    Re: Deep Linking- Multiple Parameters

    It seems like you have removed the default tenantId parameter from your PCV URL. The first parameter is always initialized using the ? symbol. Every other parameter will be called using the & symbol. So you should either add the tenantID parameter back (right after the ? symbol), or simply remove the & symbol in front of the PCVscreenID parameter in your PCV URL (right now, your paramter is initialized using the ?& symbol right after each other, which doesn't work)

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.

Helpful resources

Quick Links

Understanding Microsoft Agents - Introductory Session

Confused about how agents work across the Microsoft ecosystem? Register today!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Congratulations to the April Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard > Power Apps - Building Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 44 Most Valuable Professional

#2
mmbr1606 Profile Picture

mmbr1606 41 Super User 2025 Season 1

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 36

Overall leaderboard
Loading started