Skip to main content

Notifications

Power Apps - Building Power Apps
Answered

Pressing button doesn't navigate to form1

(1) ShareShare
ReportReport
Posted on by
I have created a button "Proceed", with below, it doesn't navigate to Form1 when I select "Pakistani and press proceed, can some one help?
If(
    DropdownNationality.Selected.Value <> "Nationality",
    Notify("Thanks for your trust,.", NotificationType.Information),
    Navigate(Form1)
)
Categories:
  • timl Profile Picture
    timl 33,713 on at
    Pressing button doesn't navigate to form1
    Hi KW-19011816-0
     
    Can you clarify what you mean when you say you want to navigate to Form1 when you select Pakistani and click Proceed?
     
    According to your screenshot below, Form1 is placed beneath the Proceed button and would already be visible when the user selects the nationality and clicks proceed.
     
    If you don't want Form1 to appear when selecting the nationality, create a new screen called 'PAD Ramadan Nationaity' and move ButtonSubmit and DropdownNationality to this new screen. Next, change the OnSelect formula of ButtonSubmit to the following:
     
    If(
       DropdownNationality.Selected.Value <> "Pakistani",
       Notify("Thank you for your trust, but this benefit is limited to Pakistani nationals only.", NotificationType.Information),
       Navigate('PAD Ramadan')
    )
     
     
     
  • Asutosh Patel Profile Picture
    Asutosh Patel 5 on at
    Pressing button doesn't navigate to form1

    You cannot navigate directly to a Power Apps form; instead, you need to specify the screen name where the form is located.

    For example:

    If(
    DropdownNationality.Selected.Value <> "Pakistani",
    Notify("Thank you for your trust, but this benefit is limited to Pakistani nationals only.", NotificationType.Information),
    Navigate(YourScreenNameWhereForm1IsLocated)
    )
  • Verified answer
    mmbr1606 Profile Picture
    mmbr1606 10,429 on at
    Pressing button doesn't navigate to form1
    hey
     
     
    you can not navigate to a form, you need to put the screenname instead on which the form is
     
     
    if it helped please mark as verified answer
     
     
    cheers

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

Microsoft Kickstarter Events…

Register for Microsoft Kickstarter Events…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Announcing Forum Attachment Improvements!

We're excited to announce that attachments for replies in forums and improved…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 145,422

#2
RandyHayes Profile Picture

RandyHayes 76,287

#3
Pstork1 Profile Picture

Pstork1 64,711

Leaderboard