I have three filters i would like to apply. I can get them to work individually but cant work out how to combine them (newbie :-)). It either doesn't work at all or I end up with one overiding the other rather than combining.
Text field search - Filter(ExportBookings,StartsWith(Title,TextSearchBox1_1.Text))
Check box - If(CheckboxToday_1.Value=false, ExportBookings, Filter(ExportBookings,InspectionDate=Today()))
Choice drop down - If(IsBlank(AllocatedPersonDropdown.Selected.Value),ExportBookings, Filter(ExportBookings,AllocatedPerson.Value = AllocatedPersonDropdown.Selected.Value))
Any assistance gratefully received.
Thank you