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
Hey there!
You can try to modify your DAX formula for the total row calculation by using a conditional check. Power BI's behavior when calculating totals can be different, so you might need to manually adjust the logic when calculating for the total.
For example, you can use something like:
TotalCalc =
IF(
HASONEVALUE(W_MCAL_PERIOD_D[MCAL_JULIAN_PERIOD_NUM]),
[YourRegularCalculation], -- regular formula for individual values
SUMX(ALL(W_MCAL_PERIOD_D), [YourRegularCalculation]) -- aggregate total calculation
)
This approach ensures that when you're at the row level (single period), it uses your regular calculation, but when you're calculating totals, it sums across all rows using the ALL function.
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!