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