Hi all
I have a gallery that displays a variety of fruit depending on which button is selected prior to opening up with gallery.
I now want to add a combo box in the mix so if the user decides to select the variety of fruit using the combo box then it will still bring up the gallery.
So I am trying to filter the datasource/gallery using the variable set of the button selection and the combo box selection if the user decides to use the combo box.
Here is the formula im trying to use -
Filter(Table15, Variety=VarietySelection && Variety=ComboBox2_10.Selected.Description)
If I just use this-
Filter(Table15, Variety=ComboBox2_10.Selected.Description)
It works but only filters based off of the combo box selection.
Or this works filtering with variable created with button selection-
Filter(Table15, Variety=VarietySelection)
But i need it to filter both, just in case the user selects one or the other.
Thanks everyone for any help