Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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 Jan + Count of Feb. and March = count of Feb + Count of March and so on.
Any help? Thanks!
Solved! Go to Solution.
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]
)
)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]
)
)Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 53 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 122 | |
| 108 | |
| 44 | |
| 32 | |
| 26 |