Skip to main content

Notifications

Community site session details

Community site session details

Session Id : wVmI9hzYtWLEIX2sn3tEsf
Power Apps - Building Power Apps
Answered

Powerapps Navigation from Gallery

Like (0) ShareShare
ReportReport
Posted on 3 Dec 2019 17:32:44 by 19

Hello, I am very new to powerapps and I am trying to build a simple app to navigate through screens and view images and some information...

 

I have created a gallery that contains suppliers1, supplier2, supplier3, supplier4

and I also created gallery1 that contains supplier1 products list

and gallery2 that contains supplier2 products list

and gallery3 that contains supplier3 products list

and gallery4 that contains supplier4 products list

What I want is that when I click on supplier1 it shall go to gallery1 and when I supplier2, it shall go to gallery2 and so on

Currently, if I click on supplier1 or 2 or 3 or 4, they all go to the same gallery1

How do I manage to navigate to each gallery that is specific for each supplier?

 

Thank you

  • perez1 Profile Picture
    15 on 12 Jul 2023 at 13:59:12
    Re: Powerapps Navigation from Gallery

    How does the whole thing work when the case looks like this:

    1. gallery - 8 different building names -> you choose one there.
    2nd gallery - shows the different staircases of the building in question -> here you select a staircase.
    3rd gallery - shows the different floors of the selected staircase.

    The data comes from the same sharepoint list.
    I have built 3 windows with 3 separate galleries that show the correct data.


    How do I get the galleries to always show the correct content when I jump from one window to another? Thank you in advance for your support. Unfortunately I am still very inexperienced in PowerApp.

     

  • Taawon Profile Picture
    19 on 10 Dec 2019 at 17:48:26
    Re: Powerapps Navigation from Gallery

    Many thanks you saved my day.. Finally

  • Verified answer
    yashag2255 Profile Picture
    24,442 Super User 2024 Season 1 on 05 Dec 2019 at 09:41:34
    Re: Powerapps Navigation from Gallery

    Hey @Taawon 

     

    Do you have all these galleries on same screen or multiple screens?

    a) If they are on same screen, you can set the Visible property of the galleries based on item selected in the mail gallery.

    I am assuming that the Items property of the main gallery is:

    ["Supplier1","Supplier2","Supplier3","Supplier4"]
    
    Supplier1 Gallery -> Visible -> If(MainGallery.Selected.Value = "Supplier1",true,false)
    Supplier2 Gallery -> Visible -> If(MainGallery.Selected.Value = "Supplier2",true,false)
    Supplier3 Gallery -> Visible -> If(MainGallery.Selected.Value = "Supplier3",true,false)
    Supplier4 Gallery -> Visible -> If(MainGallery.Selected.Value = "Supplier4",true,false)


    b) If the galleries are on different screens, you can set the OnSelect Property of the main gallery as:

    If(MainGallery.Selected.Value = "Supplier1", Navigate(Screen_Supplier1),MainGallery.Selected.Value = "Supplier2",Navigate(Screen_Supplier2),MainGallery.Selected.Value = "Supplier3", Navigate(Screen_Supplier3),MainGallery.Selected.Value = "Supplier4",Navigate(Screen_Supplier4))

     

    Hope this Helps!

    If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!

  • v-siky-msft Profile Picture
    on 05 Dec 2019 at 08:06:16
    Re: Powerapps Navigation from Gallery

    Hi @Taawon ,

     

    As Pstork1 said, navigation is based on screen. You need to create four screens to hold each of the four galleries.

    Then apply the following codes to OnSelect property of MainGallery.

     

    Switch(MainGallery.Selected.Value, "suppliers1",Navigate(suppliers1Screen),"supplier2",Navigate(suppliers2Screen)),"suppliers3",Navigate(suppliers3Screen),"supplier4",Navigate(suppliers4Screen))

     

    Note: MainGallery is the gallery contains four suppliers, If the MainGallery.Selected.Value doesn't work, please try to type a " . " dot after 'MainGallery.Selected' and try any autocomplete suggestion that appears.

    Best regards,

    Sik

  • Pstork1 Profile Picture
    66,093 Most Valuable Professional on 04 Dec 2019 at 21:05:43
    Re: Powerapps Navigation from Gallery

    Navigation is based on the screen, not on the gallery.  You can't navigate to a gallery,  but you can navigate to a screen where that gallery is visible.  Otherwise you aren't navigating anywhere you are just changing the visibility of the galleries.  Its easier to do navigation. That's why I suggested putting the galleries on separate screens.  If they are on separate screens and its still not working please share some details about how you've setup the gallery you are using for navigation.

  • Pstork1 Profile Picture
    66,093 Most Valuable Professional on 04 Dec 2019 at 21:02:53
    Re: Powerapps Navigation from Gallery
  • Taawon Profile Picture
    19 on 04 Dec 2019 at 17:25:45
    Re: Powerapps Navigation from Gallery

    I have already made four galleries for each supplier, but if i click on supplier2, it also goes to gallery1 not gallery2.

     

    as I mentioned I am very new to this, and I am sure I am missing something here I hopes I can find it,, you tube is not very rich with how to navigate between galleries thing.. can you please help me with this?

  • Pstork1 Profile Picture
    66,093 Most Valuable Professional on 03 Dec 2019 at 17:42:39
    Re: Powerapps Navigation from Gallery

    The easiest way to do this is to put the 4 different galleries on different screens. Then navigate to each screen when you click the appropriate entry in the first gallery.  You'll need to duplicate the navigation gallery on each of the screens.

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

#1
WarrenBelz Profile Picture

WarrenBelz 146,776 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 66,093 Most Valuable Professional

Leaderboard
Loading started