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!View all the Fabric Data Days sessions on demand. View schedule
Hi I would like to achieve calculating monthly saving of the year
I have a data with Montly saving starting from project implementation date
Example, May saving 50 euro, then June saving of 30 Euro, then Cumulative saving if June is 50+50+30 = 130
When project implemented in August with saving of 10 euro, then August cumulative saving is 50+50+50+50+30+30+30+10 = 300
Can someone please help
Thanks
Solved! Go to Solution.
Hi @kayo apologies...I missed that when I read the initial question.
I mocked up some data and came up with this...
Hope this helps!
Thank you Littlemojopuppy for your reply
Your solution igives the same result as TOTALYTD(Sum(Monthly saving), Datetable(Datefield) and returns 210 as cumulative sum,
What I am looking for is to repeat saving after it is implemented
In my example matrix, accumulated sum I want to achieve is 840
Is there way to do?
In other word, I want to cumulate value (A cumulation of monthly saving) again to have my result (B)
Hi @kayo apologies...I missed that when I read the initial question.
I mocked up some data and came up with this...
Hope this helps!
This is great !
Thank you so much for your help
DAX for measures for anyone who finds this later...
Total Savings = SUM(RawData[Savings])
YTD Savings =
TOTALYTD(
[Total Savings],
'Calendar'[Date]
)
Cumulative YTD Savings =
VAR MonthEnding =
CALCULATETABLE(
VALUES('Calendar'[MonthEndingDate]),
FILTER(
ALL('Calendar'),
'Calendar'[Date] <= MAX('Calendar'[Date])
),
DATESYTD('Calendar'[Date])
)
VAR CumulativeSavings =
CALCULATETABLE(
ADDCOLUMNS(
MonthEnding,
"YTDSavings",
[YTD Savings]
),
REMOVEFILTERS('Calendar')
)
RETURN
SUMX(
CumulativeSavings,
[YTDSavings]
)
Hi @kayo
Try this
CALCULATE(
SUM([MonthlySaving]),
DATESYTD(DateTable[DateField])
)
DATESYTD is a time intelligence function so make sure you have a date table and that it is marked appropriately.
Hope this helps!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 14 | |
| 11 | |
| 9 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 28 | |
| 20 | |
| 19 | |
| 17 | |
| 12 |