Hi @Lyondenn
Set the OnSelect property of the Red Button to
UpdateContext({SelectedColor: "Red"});
ClearCollect(ColSPData, Filter(SPList, ColorChoiceColumnName.Value=SelectedColor));
The same goes for other colors as well
UpdateContext({SelectedColor: "Green"});
ClearCollect(ColSPData, Filter(SPList, ColorChoiceColumnName.Value=SelectedColor));
In the above example, I user collection to illustrate the filter data. We don't need the collection If you want to display data in the dropdown or combo box or gallery based on the color selection.
Sort(Filter(SPList, ColorChoiceColumnName.Value=SelectedColor).ColumnToDisplay,ColumnToDisplay)
Example (Items property of dropdown)
Sort(Filter(IssueTracker, Colors.Value=SelectedColor).Title,Title)
Let us know what you are looking after filter so that we can guide you.
Thanks,
Stalin - Learn To Illuminate