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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I want to calculate the SUM of the ratio for each month. What I would expect is value 138,26 in every row in column ‘Sum of Ratio’ when month = 1. And another value that corresponds to the sum of that month.
When I hardcode value 1 in the fitler it works (but that's not the solution ofcourse 😉
-> FILTER(dimCalculations, dimCalculations[Month] = 1)
My approach comes from excel, but I guess that doesn’t work here. Can anyone help me in the right direction?
Kind regards,
Steve
Solved! Go to Solution.
hi @SteveMBSDO
try like:
Sum of Ratio =
SUMX(
FILTER(
dimCalculations,
dimCalculations[Month] = EARLIER(dimCalculations[Month])
),
dimCalculations[Ratio]
)
or like:
Sum of Ratio =
CALCULATE(
SUM(dimCalculations[Ratio]),
ALLEXCEPT(dimCalculations, dimCalculations[Month])
)
hi @SteveMBSDO
try like:
Sum of Ratio =
SUMX(
FILTER(
dimCalculations,
dimCalculations[Month] = EARLIER(dimCalculations[Month])
),
dimCalculations[Ratio]
)
Great! Thank you FreemanZ. Both of your answers work ;-)!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
12 | |
12 | |
11 | |
10 | |
9 |