Skip to main content

Notifications

Power Apps - Building 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:
  • WarrenBelz Profile Picture
    WarrenBelz 145,475 on at
    Re: Update gallery with button click to show all items

    @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

     

  • MP-13011217-0 Profile Picture
    MP-13011217-0 158 on at
    Re: Update gallery with button click to show all items

    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? 

  • Verified answer
    WarrenBelz Profile Picture
    WarrenBelz 145,475 on at
    Re: Update gallery with button click to show all items

    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

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

Microsoft Kickstarter Events…

Register for Microsoft Kickstarter Events…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Announcing Forum Attachment Improvements!

We're excited to announce that attachments for replies in forums and improved…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 145,475

#2
RandyHayes Profile Picture

RandyHayes 76,287

#3
Pstork1 Profile Picture

Pstork1 64,767

Leaderboard