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 conditions is that it then searches by the two search boxes and the selected office value as per below.
If('Select Office_(All)'.Selected.Value= "All Offices", Filter('CDR Tracker 1', StartsWith( 'Case Reference', searchCaseQuery ) && StartsWith(Requestor.DisplayName,searchRequestorQuery)), // First Part Filters via Case and requestor and checks if All Offices is Selected
Filter('CDR Tracker 1',StartsWith('Case Reference',searchCaseQuery) && StartsWith(Requestor.DisplayName,searchRequestorQuery) && Office.Value = 'Select Office_(All)'.Selected.Value)) // If not all offices selected then this filters via the office select in addition to the Case Query and Requestor query.
I have a combo box whereby you can select multiple statuses (There are 7 Statuses in total), however every time I try to add it the filter I get errors, does anyone what I should be doing to ensure that I can include the selection criteria of the combo box within both conditions of this IF statement and Filter