@CallMeT
Are you asking "How can I filter a gallery by pressing buttons"?
Put code like this in the OnSelect property of each button.
Set(varButtonPressed, "A")
Set(varButtonPressed, "B")
Set(varButtonPressed, "C")
Then use code like this in the Items property of the Gallery to display only records for the current button clicked.
Switch(
varButtonPressed,
"A", Filter(your_datasource_name, RequestType: "A"),
"B", Filter(your_datasource_name, RequestType: "B"),
"C", Filter(your_datasource_name, RequestType: "C"),
"D", Filter(your_datasource_name, RequestType: "D"),
"E", Filter(your_datasource_name, RequestType: "E"),
"F", Filter(your_datasource_name, RequestType: "F"),
"G", Filter(your_datasource_name, RequestType: "G")
)
I've given a general solution since you only provided general information. If you need a more specific information please provide anything I would need to re-create the problem.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."