Forum Discussion
Alxnder
2 years agoFrequent Visitor
sum with multiple criteria
Hello, any help would be greatly apprecaited, this should help create other measures. Here is the sample data: I need to be able to sum based on the following creteria. ...
- 2 years ago
Alxnder Try:
Measure = SUMX( FILTER( 'Table', [Variety] = "Navel" && [Grade] = "Fancy" && [Export Market] = "Domestic" && [age] > 10 ), [Qty] )
Greg_Deckler
Community Champion
2 years agoAlxnder Try:
Measure =
SUMX(
FILTER( 'Table', [Variety] = "Navel" && [Grade] = "Fancy" && [Export Market] = "Domestic" && [age] > 10 ),
[Qty]
)- Alxnder2 years agoFrequent Visitor