Hi everyone! I’m having some issues with an IFS() equation.
IFS(ISNOTBLANK(SELECT(Dashboard Filter[AgencyInstructionsFilter],[AgencyInstructionsFilter]=“Not blank”)), ISNOTBLANK(SELECT([Agency Instructions],ISNOTBLANK([Agency Instructions]))),
ISNOTBLANK(SELECT(Dashboard Filter[AgencyInstructionsFilter],[AgencyInstructionsFilter]=“Blank”)), ISNOTBLANK(SELECT([Agency Instructions],ISBLANK([Agency Instructions]))),
ISNOTBLANK(SELECT(Dashboard Filter,[AgencyInstructionsFilter]=“None”)),
true)
Essentially the AgencyInstructionsFilter is a filter column that supposed to filter a different table (Case Info Database) depending on if an Agency Instructions columns is blank or not. This particular equation returns no values for a filter of “Blank” and all values for filters of “Not blank” and “None”. The last filter should be the only one that returns all values. The AgencyInstructionsFilter and Agency Instructions columns are both text, with the latter being an Enum with base value of text.
I’m thinking my use of ISNOTBLANKS is messing me up somewhere but I’m just not sure. Is there anything that stands out to anyone? Thanks in advance!
Thanks,
Justin