Nix
Nix

Reputation: 143

How do I dynamically change the gallery source in Powerapps?

Below is the sample data: enter image description here

Below is the vertical gallery where it displays the areaName based on storey column: enter image description here

Below is the image for areaDescription content in a vertical gallery as well: enter image description here

The desire outcome I would like to have is: For instance, if I select "office" item in the vertical gallery, it should navigate me to a screen showing the areaDescription for the office. Let's say if I go back and select "Meeting room" item in the vertical gallery, it should navigate me to the SAME screen showing the areaDescription for the meeting room. In short, I want to on item select in vertical gallery to navigate me to the same screen and change the content (checklists) of the screen dynamically.

It would be good to possibly provide sample canvas-app functions so I could understand. I really have no idea how it should do it :( Please help by seeing this above question.

Upvotes: 0

Views: 3413

Answers (1)

Emily Kessler
Emily Kessler

Reputation: 231

You should be able to do something like this for Gallery2 Items property:

Filter('Data Source Name Here', areaName = Gallery1.Selected.areaName)

And then set the Items property for the label in your second gallery to be

ThisItem.areaDescription

Upvotes: 1

Related Questions