Hi guys,
I am new to Power Apps and busy developing an application for a client.
I am stuck with a filter not working:

When "Any" is selected in the Document Controller Name, it does not display data but works perfectly fine when you select a DC.
Here is my code for it:
Search(
Filter(
'DummyData',
If(
varCurrentTab = "All Projects",
true,
varCurrentTab = "Active",
Status = "Active",
varCurrentTab = "On Hold",
Status = "On Hold",
varCurrentTab = "Complete",
Status = "Complete",
varCurrentTab = "Terminated",
Status = "Terminated",
varCurrentTab = "Funding Request",
Status = "Funding Request",
varCurrentTab = "Pipeline",
Status = "Pipeline",
varCurrentTab = "Unknown",
Status = "Unknown"
),
DC = dc_dropdown_1.Selected.Result
),
search.Text,
"Name",
"Site",
"Code"
)
How can I fix this problem? Any assistance will be much appreciated.
Thanks,
Andrew