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 / Update gallery with bu...
Power Apps
Answered

Update gallery with button click to show all items

(0) ShareShare
ReportReport
Posted on by 158

Hello,

 

I have a gallery which is taking data from another gallery: 1st gallery is months only and second gallery are items per month. I already have a button to filter the gallery with items through the value and it's working but I want another button which will show me all items per selected month back(not only above £50). 

 

My codes:

Gallery with items: 

Filter(
Table1,
(month='Month Gallery'.Selected.month),
If(
FilterByValue = true, 'ALL SCRAP COST'>=50)
)

 

My button to filter gallery through the value:

UpdateContext({FilterByValue:!FilterByValue})

 

What do I need to add to the gallery and another button to show me all scrap values, not only these above £50, please? 

 

Regards 

Categories:
I have the same question (0)
  • Verified answer
    WarrenBelz Profile Picture
    154,540 Most Valuable Professional on at

    Hi @marcy_pi ,

    This will show either, depending on your button sequence

    Filter(
     Table1,
     month='Month Gallery'.Selected.month &&
     (
     !FilterByValue ||
     'ALL SCRAP COST'>=50
     )
    )

     

     Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    Visit my blog Practical Power Apps

  • MP-13011217-0 Profile Picture
    158 on at

    Thank You this is working very well! Do You know how I can do the same but use 2 buttons: 1st to show these values above 50 and another button to show all values? 

     

    The code You shown is great but working for one button so I click and it shows my values then I click again and it shows all records. How to split these two operations to two buttons? 

  • WarrenBelz Profile Picture
    154,540 Most Valuable Professional on at

    @marcy_pi ,

    For the two buttons, just have one setting the Variable to true and the other setting it to false.

    For the value, set a Variable

     

    UpdateContext({varOver50: true})

     

    and the other

     

    UpdateContext({varOver50: false})

    and I cannot test this and have tried to keep it Delegable

    Filter(
     Table1,
     month = 'Month Gallery'.Selected.month &&
     (
     !FilterByValue ||
     (
     (
     varOver50 || 
     'ALL SCRAP COST' >=50
     ) &&
     (
     !varOver50 ||		 
     'ALL SCRAP COST' < 50
     )		 
     )
     )
    )
    

     

    Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.

    Visit my blog Practical Power Apps

     

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!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 525 Most Valuable Professional

#2
Haque Profile Picture

Haque 308

#3
Kalathiya Profile Picture

Kalathiya 234 Super User 2026 Season 1

Last 30 days Overall leaderboard