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.
Hi Everyone - I've averaged a value but I want to sum the averages in my subtotals and totals.
Can you help?
Solved! Go to Solution.
I would encourage you to add a separate Date table, instead of using a Date Hierarchy, but below is a measure expression that sums the averages.
Avg Impact =
SUMX (
SUMMARIZE ( MASTER, MASTER[Date].[Year], MASTER[Date].[Quarter] ),
CALCULATE ( AVERAGE ( MASTER[Impact%] ) )
)
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
I would encourage you to add a separate Date table, instead of using a Date Hierarchy, but below is a measure expression that sums the averages.
Avg Impact =
SUMX (
SUMMARIZE ( MASTER, MASTER[Date].[Year], MASTER[Date].[Quarter] ),
CALCULATE ( AVERAGE ( MASTER[Impact%] ) )
)
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@mahoneypatholy cow did Patrick Mahomes just reply to my PowerBI question?!?!?!? LOL
Thank you sir, marking as solution.