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 / Filter data with buttons
Power Apps
Unanswered

Filter data with buttons

(0) ShareShare
ReportReport
Posted on by 20

I have a gallery with the Item property SortByColumns(Filter([@'Source'], StartsWith(Title, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))

 

Inside the source, I have a column of data with items 0,1,2

 

I'm planning to have 3 buttons 

if a user press 0 button, it will filter the gallery with items = 0

if a user press 1 button, it will filter the gallery with Items = 1

if a user press 2 button, it will filter the gallery with Items = 2

 

Capture.JPG

Categories:
I have the same question (0)
  • Community Power Platform Member Profile Picture
    Microsoft Employee on at

    You can define a context variable that holds the value of the filter managed by your buttons:

     

    In each button OnSelect callback (here for button 0):

    UpdateContext({myFilter:0})

     

    Then update the filter in your gallery:

    SortByColumns(
     Filter([@'Source'], 
     StartsWith(Title, TextSearchBox1.Text),
     Or(myFilter<0,theColumnToFilter=myFilter)), 
     "Title", If(SortDescending1, Descending, Ascending))

     

    And  don't forget to initialize the filter value (in screen onVisible callback):

    UpdateContext({myFilter:-1})

     

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 April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
Vish WR Profile Picture

Vish WR 936

#2
Valantis Profile Picture

Valantis 604

#3
11manish Profile Picture

11manish 518

Last 30 days Overall leaderboard