Hi, everyone.
I would like to propose a challenge to the community: To filter a gallery based on the button color.
The gallery TemplateFill property is under a conditional formating "If" formula based on ThisItem.GenericDateColumn.
The main goal is to filter the gallery by pressing one of the buttons highlighted below, and it must return items with the same color as the selected button. It's "that simple". Would love to see your suggestions to solve this challenge.
Thanks for reading!
Does anyone solved this?
You could combine a filter function and a switch function to filter by the same formula as the one to change the colors - for a rough example:
Switch(
ColorsGallery.Selected,
"Blue",
Filter(
List,
FormulaForColor = ResultThatReturnsBlue
),
"Green",
Filter(
List,
FormulaForColor = ResultThatReturnsGreen
),
ect.
)
It's hard to say exactly what to do without specifics but that should work.
Hope this helps!
WarrenBelz
146,537
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,908
Most Valuable Professional