I've almost got this gallery filter to work, however I'm struggling with the syntax for a couple column types to avoid delegation issues.
The SharePoint list is called WorkRequest and the column types I want to filter the gallery on are:
Created, type date
Open_Closed, type text
LeadAssigned, type person (multiple permitted)
ServiceAreas, type choice (multiple permitted)
The controls on my Power App screen are called:
DateFrom (date picker)
DateTo (date picker)
cmbStatus (combo box to select Open or Closed status)
cmbServiceArea (combo box to select 1 Service area)
cmbLeadAssigned (combo box to select 1 Lead Assigned)
For the gallery items property, so far I've got the first 2 filters (Created, Open_Closed) to work using this formula:
Filter(WorkRequest, Created>=DateFrom.SelectedDate && Created<=DateTo.SelectedDate && StartsWith(Open_Closed,cmbStatus.Selected.Value))
When I try adding another StartsWith filter criteria for the ServiceArea or LeadAssigned criteria, I'm getting red errors in the syntax, plus I'm getting a delegation warning for the StartsWith function (which I thought was delegable to SharePoint). I don't know what I'm doing wrong.
For example...

Any help would be much appreciated.