web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Navigate to different ...
Power Apps
Unanswered

Navigate to different screen based on pre-populate selection in a drop-down

(0) ShareShare
ReportReport
Posted on by 4

Hi, 

 

I’m facing a problem that I can’t navigate my form to the correct screen based on the pre-populate selection from a gallery. 

Basic background: The form will pre-populate the language in the language drop-down selected from the Sharepoint page. There are multiple screens pointing to different language. When the user selected a language in the sharepoint page (i.e French), the form will open and should navigate to the correct French screen.

Right now the language drop-down is working good and changed to French, but the form is still displaying the default form - English. I have to click French again and the form will navigate to the French screen.

 

I used the following formulas:

 

language drop-down : 

If( languageDataCardValue.selected.value = “English”, Navigate(English, Screentransaction.cover), languageDataCardValue.selected.value = “French”, Navigate(French, Screentransaction.cover))

 

default:

if( !(param=“”),param=‘language’,parent.default)

 

Any help will be much appreciated!

Categories:
I have the same question (0)
  • Bilakanti Profile Picture
    1,226 on at

    @Shavesbsb  - As you are receiving the parameter from outside and setting the parameter to default property of the dropdown it just sets the value, but it will not fire the on change function, that's the reason where your form was not navigating to the right screens. You need to write the same logic in app on start to check if your parameter language value is English or French and then navigate to respective screens.

  • Shavesbsb Profile Picture
    4 on at

    Thank you @Bilakanti ! Is it possible to give more details? I do not find on start in property and I try to use code in below but it is not working 

     

    If( languageDataCardValue.selected.value = param(“language”), Navigate(param(“language”), Screentransaction.cover)

     

  • Bilakanti Profile Picture
    1,226 on at

    @Shavesbsb On the screen onvisible property use below code.
    If( param(“language”) = “English”, Navigate(English, Screentransaction.cover), param(“language”) = “French”, Navigate(French, Screentransaction.cover))

  • Shavesbsb Profile Picture
    4 on at

    @Bilakanti Thank you!  but Onvisible shows that “Navigate can’t be used here since it would automatically navigate away from this screen”. Any ideas? 

  • WarrenBelz Profile Picture
    154,930 Most Valuable Professional on at

    Hi @Shavesbsb ,

    Assuming you are not already on the English or French page - put this OnSelect of the drop-down 

    Switch(
     Self.Selected.Value,
     "French", 
     Navigate(French, Screentransaction.Cover),
     "English", 
     Navigate(Englich, Screentransaction.Cover)
    )

    or are you wanting to Navigate automatically based on the Parameter - if so, where is the parameter coming from ?

    As an example if this is deep-linked with the Parameter "Language", then StartScreen

    If(
     IsBlank(Param("Language")),
     YourIntroScreen,
     Param("Language") = "English",
     English,
     Param("Language") = "French",
     French,
     YourIntroScreen,
    )
    

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    MVP (Business Applications)   Visit my blog Practical Power Apps

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 551

#2
WarrenBelz Profile Picture

WarrenBelz 430 Most Valuable Professional

#3
Valantis Profile Picture

Valantis 298

Last 30 days Overall leaderboard