Forum Discussion
Spencer
Helper II
10 years agoSimple Sum Filter
Hi If I have a dataset like the following: Status Qty P 10 P 20 M 50 M 30 C 25 C ...
- 10 years ago
Assuming your table is called "Table":
Measure = CALCULATE(SUM('Table'[QTY]);'Table'[Status]<>"C";'Table'[Status]<>"D")
CALCULATE() allows multiple filters
Spencer
Helper II
10 years agoThanks for the reply Douwe but I don't think that will filter out the D's as well.
SanderBeukers
Advocate I
10 years agoAssuming your table is called "Table":
Measure = CALCULATE(SUM('Table'[QTY]);'Table'[Status]<>"C";'Table'[Status]<>"D")
CALCULATE() allows multiple filters