Using Excel online (where my table is located) I would like to filter by using a combo box for one particular column (Week_Commencing) and then filter by text using a text input box for multiple columns (Haulier, Collection_Delivery, Due_Date Etc) and if no selection in combo box still be able to filter using only the text input box, if this is possible.
This is how im filtering gallery with the textbox but i have no idea what and how to add the additional augments/Logic to fulfil what i have outlined above.
Filter(
Table2,
Or(
TextInput1.Text in Haulier,
TextInput1.Text in Collection_Delivery,
TextInput1.Text in Due_Date
)
)