Forum Discussion
Spencer
9 years agoHelper II
Simple Sum Filter
Hi If I have a dataset like the following: Status Qty P 10 P 20 M 50 M 30 C 25 C ...
- 9 years ago
Assuming your table is called "Table":
Measure = CALCULATE(SUM('Table'[QTY]);'Table'[Status]<>"C";'Table'[Status]<>"D")
CALCULATE() allows multiple filters