The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 )
)
)
)
User | Count |
---|---|
14 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
28 | |
17 | |
12 | |
7 | |
5 |