I want to enable the users to select which view they want to see for my gallery. To filter for a specific view, I know that we can simply filter the gallery by Filter( Leads, 'Leads (Views)'.'Active Leads' ). To enable selection, I inserted a drop down box with Choices ('Leads (Views)') to provide the users all Lead views available to choose from. However, I can't find a way to pass the drop down value back to the filter and make the filter work. I tried something like:
- Filter( Leads, 'Leads (Views)'.(LeadViewsDropDown.Selected.Value) )
- Filter( Leads, LeadViewsDropDown.Selected )
But none of above work. I thought of using a Switch to do that, but that'd be complicated and hardcoded and if we add or delete any views we'll have to edit the Switch again. Anyone knows a way that we can apply the selected view from dropdown toward the Filter of the gallery?
Thanks in advance!
Solved! Go to Solution.
Sorry solved it myself. Below works:
Filter( Leads, LeadViewsDropDown.Selected.Value )
Sorry solved it myself. Below works:
Filter( Leads, LeadViewsDropDown.Selected.Value )
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
185 | |
55 | |
43 | |
35 | |
33 |
User | Count |
---|---|
263 | |
78 | |
75 | |
72 | |
67 |