Forum Discussion
Anonymous
7 years agoNot applicable
Cumulative measure for count
I have table that looks as follows: I have the month year and count. The cumulative is the measure that i would like to create. The value for jan 2018 is the same. Then Feb = count of J...
- Anonymous7 years ago
This should work for your example
Cumulative Count = CALCULATE( SUM( 'Cumu Count Ex'[Count]), FILTER( ALL('Cumu Count Ex'[Date]), MAX('Cumu Count Ex'[Date]) >= 'Cumu Count Ex'[Date] ) )
Anonymous
7 years agoNot applicable
This should work for your example
Cumulative Count =
CALCULATE(
SUM( 'Cumu Count Ex'[Count]),
FILTER(
ALL('Cumu Count Ex'[Date]),
MAX('Cumu Count Ex'[Date]) >= 'Cumu Count Ex'[Date]
)
)