Forum Discussion
Anonymous
4 years agoNot applicable
Filter OR condition
Hi all,
I am trying to use Calculate and filter with an OR condition
Like this CALCULATE(DISTINCTCOUNT[LIST]),FILTER(Table,[Status], OR([Status]<>"Yes",[Status]<>"Maybe"))
Any ideas on how to make it work?
thank you
Try this
CALCULATE(DISTINCTCOUNT[LIST]),NOT([Status] in {"Yes","Maybe"}))
1 Reply
- freginierSolution Sage
Try this
CALCULATE(DISTINCTCOUNT[LIST]),NOT([Status] in {"Yes","Maybe"}))