Hello,
I am attempting to filter a gallery sharepoint list by numerous drop downs and a search box. I needed to add an option in the filter for "ALL" values. I would like these to work simultaneuously but I am unable to get a single drop down to filter correctly. Here is the furthest i have gotten but am receiving delgation warnings.
Filter(Project, If((phasedrop.Selected.Value="all"), true, Phase.Value = phasedrop.Selected.Value))
The gallery filters by the other selections but when all is selected, the gallery is blank. How can I pair each of these if statements together to display ALL if the selection is made?

EDIT!!: If((phasedrop.Selected.Value = "All"), Project, Filter(Project, Phase.Value = phasedrop.Selected.Value))
I have been able to get all to filter but I need to combine these if statements so that the drop down boxes work together