I'm trying to make an app that is connected to a Google sheet now as Sharepoint online couldn't do as much and I can get each of these filters to work indepentently, but can I somehow combine them all into 1?
The first 2 filters are by dropdowns and the third is obviously a search. I would like it so that all 3 can be used simultaneously. So you can select a building, a tech, and still be able to search if you wanted.
If(!IsBlank(FiltBuilding.Selected.Value),Filter(Powerapp,Building=BuildingVar.Value),Powerapp)
If(!IsBlank(FiltTech.Selected.Value),Filter(Powerapp,Tech=TechVar.Value),Powerapp)
If(!IsBlank(Search1V),Filter(Powerapp,Search1V in Desciption || Search1V in Destiny),Powerapp)
Thanks!