Forum Discussion
Anonymous
7 years agoNot applicable
Assistance required with formulating Measures
HI Guys
so i have a data set and within it there are 2 columns One of them is quanity and the other is category type.
I want to count the total quantity, without a certain categroy name being accounted for.
i.e. count all of the quanitys except for when the category name is 'Drops'.
Can you help?
you will need to adjust the table and column names
CALCULATE(SUM(Table[Quantity]), Table[Category]<> "Drops")
1 Reply
- StachuCommunity Champion
you will need to adjust the table and column names
CALCULATE(SUM(Table[Quantity]), Table[Category]<> "Drops")