Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 )
)
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 9 | |
| 8 | |
| 8 |