Forum Discussion
SchoolBoy
8 years agoFrequent Visitor
Count and sum it up
Hello, I have a little problem :) How can I calculate a total monthly occurrence of unique customer numbers? For example: there is a sales table including invoice date, customer number, invoice...
- 8 years ago
Hi SchoolBoy
Try this MEASURE
Measure = SUMX ( VALUES ( Table1[Day] ), CALCULATE ( DISTINCTCOUNT ( Table1[Customer] ) ) )
Zubair_Muhammad
8 years agoCommunity Champion
Hi SchoolBoy
Try this MEASURE
Measure =
SUMX (
VALUES ( Table1[Day] ),
CALCULATE ( DISTINCTCOUNT ( Table1[Customer] ) )
)SchoolBoy
8 years agoFrequent Visitor
Thank you very much, it works very well! :)