Filter('Survey Responses',StartsWith(Surname,txtnamefilter.Text) && (Status.Value =cbstatusfilter.Selected.Value || cbstatusfilter.Selected.Value = Blank()) && (Dropdown3.Selected.Value = Blank()||Dropdown3.Selected.Value in Responsibility.Value))
Above is an example of a filter on a gallery using sharepoint list (over 2000 records) but the 'in' operator is non delegable.
Are there alternatives for filters looking at multi value fields that are delegable? The Responsibility field above can have multiple options selected
thanks