
Hi,
I want to navigate to a filtered gallery by pressing a button in Power Apps. Any ideas on how I can achieve this?
Thanks
Abdullah
Hi,
On select property of button you can use below formula -
ClearCollect(colFilteredGal, Filter(SPList, StartsWith(Title, "Test")); Navigate(Screen2)
On Screen2 you can add gallery and in items property use collection - colFilteredGal
Here I have used StartsWith filter just to showcase filtering of gallery. You can add your filtering logic there