Forum Discussion
LS1700
Resolver I
9 years agosum by group and count if
Hi, I would like to have a measure that can tell me how many cusotmer have not sold a single unit in total. The measure ( I think) should do the sum of the sales by customer and then count t...
- Anonymous9 years ago
I didn't try this... but it sounds kinda nice...? :)
Total Sales = SUM(MyTable[Sales])
Losers = CALCULATE(DISTINCTCOUNT(MyTable[Customer]), FILTER(VALUES(MyTable[Customer]), [Total Sales] = 0))
Anonymous
9 years agoNot applicable
I didn't try this... but it sounds kinda nice...? :)
Total Sales = SUM(MyTable[Sales])
Losers = CALCULATE(DISTINCTCOUNT(MyTable[Customer]), FILTER(VALUES(MyTable[Customer]), [Total Sales] = 0))
jetboy2k
Helper I
8 years agoThanks! Completely solved my problem!