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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all, I am having matrix view in which I am having "Idea Title" column in Rows, "Month" from calculated date column is used in column and "Cumulative Total Planned Savings (USD)" in values as show in image below.
Cumulative Total Planned Savings (USD) =
Solved! Go to Solution.
@ManjushVG, Try like
Cumulative Total Planned Savings (USD) =
VAR CurrentDate = TODAY()
VAR CurrentYear = Max('Calendar Date'[Date])
RETURN
SUMX(
'Initiative Tracker',
CALCULATE(
[Total Planned Savings (USD)],
FILTER(
ALL('Calendar Date'),
YEAR('Calendar Date'[Date]) = CurrentYear
)
)
)
or you can try like
Cumulative Total Planned Savings (USD) =
VAR CurrentDate = TODAY()
VAR CurrentYear = Max('Calendar Date'[Date])
RETURN
SUMX(
'Initiative Tracker',
CALCULATE(
[Total Planned Savings (USD)],
FILTER(
ALL('Calendar Date'),
YEAR('Calendar Date'[Date]) = today()
)
)
)
@ManjushVG, Try like
Cumulative Total Planned Savings (USD) =
VAR CurrentDate = TODAY()
VAR CurrentYear = Max('Calendar Date'[Date])
RETURN
SUMX(
'Initiative Tracker',
CALCULATE(
[Total Planned Savings (USD)],
FILTER(
ALL('Calendar Date'),
YEAR('Calendar Date'[Date]) = CurrentYear
)
)
)
or you can try like
Cumulative Total Planned Savings (USD) =
VAR CurrentDate = TODAY()
VAR CurrentYear = Max('Calendar Date'[Date])
RETURN
SUMX(
'Initiative Tracker',
CALCULATE(
[Total Planned Savings (USD)],
FILTER(
ALL('Calendar Date'),
YEAR('Calendar Date'[Date]) = today()
)
)
)
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 |
|---|---|
| 104 | |
| 81 | |
| 66 | |
| 50 | |
| 45 |