Hey all,
Need a bit of help here. I have this formula below:
- Search(Filter(MSDriverList,DriverType.Value="CDL Driver" || DriverType.Value="Non CDL CMV Driver"),SearchInput1.Text,EmployeeName,EmployeeName)
I need to add a initial filter before the 'DriverType' which includes the column 'EmployeeStatus'="Active".......is the filter below the best way to approach this?
- Search(Filter(MSDriverList,EmployeeStatus.Value="Active",And(DriverType.Value="CDL Driver" || DriverType.Value="Non CDL CMV Driver")),SearchInput1.Text,EmployeeName,EmployeeName)