Hi,
I have a filter whereby, it utilises an IF statement to check if a selected value "All Offices" is selected, it then filters by two search boxes, if "All Offices" is not selected the else condition is that it then searches by the two search boxes and the selected office value as per below.
I then have a filter whereby it checks the selection of the status in a combo box which allows multiple selection; the filter however only filters by one selection on the combo box. e.g I could select picked up & Complete, but the gallery will only show the one I selected most recently.
Filter(If('Select Office_(All)'.Selected.Value= "All Offices", Filter('CDR Tracker 1', StartsWith( 'Case Reference', searchCaseQuery ) && StartsWith(Requestor.DisplayName,searchRequestorQuery)),
Filter('CDR Tracker 1',StartsWith('Case Reference',searchCaseQuery) && StartsWith(Requestor.DisplayName,searchRequestorQuery) && Office.Value = 'Select Office_(All)'.Selected.Value)), 'Status Filter (All)' .Selected.Value in Status.Value
)