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.
I am sharing my PBI file here.
I am trying to display average calculation of percentage on the subtotal row and fix total shown as the correct 'average'.
80.79% and 32.95% are expected values.
For the 1st table (where there is missing of average), I am using these measures:
How do I fix these two?
Solved! Go to Solution.
Hi,
Please check the attached file and the below picture.
Budget % =
AVERAGEX (
DISTINCT ( Table2[Provider_Name] ),
CALCULATE ( DIVIDE ( COUNT ( Table1[ID] ), SUM ( Table2[Capacity] ) ) )
)
Variance % =
AVERAGEX (
DISTINCT ( JoinKeyNew[Facility Name] ),
CALCULATE (
DIVIDE (
COUNTROWS (
FILTER (
Table1,
Table1[PayerName]
IN { "Medicare A", "Medicare HMO", "Managed Medical Skilled", "Insurance" }
)
),
COUNTROWS ( Table1 )
)
)
)
Hi,
Please check the attached file and the below picture.
Budget % =
AVERAGEX (
DISTINCT ( Table2[Provider_Name] ),
CALCULATE ( DIVIDE ( COUNT ( Table1[ID] ), SUM ( Table2[Capacity] ) ) )
)
Variance % =
AVERAGEX (
DISTINCT ( JoinKeyNew[Facility Name] ),
CALCULATE (
DIVIDE (
COUNTROWS (
FILTER (
Table1,
Table1[PayerName]
IN { "Medicare A", "Medicare HMO", "Managed Medical Skilled", "Insurance" }
)
),
COUNTROWS ( Table1 )
)
)
)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.