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
Hello,
a) I'm trying to create a calculated column that will calculate the average of already computed averages, for each case ID. Below is my data. The last column is what im trying to get, and it should be responsive to any filters I apply later on.
b) In addition I also want to create an overall average calculation for all Cases looked at together, like this: calculation: Overall average for all cases: 20.65 (29.8+11.5/2)
| Case | AVERAGE for each Case | Overall Average for Case |
| 1a | 27.68 | 29.8 |
| 1b | 27.68 | 29.8 |
| 1c | 27.68 | 29.8 |
| 1d | 31.92 | 29.8 |
| 1e | 31.92 | 29.8 |
| 1f | 31.92 | 29.8 |
| 2a | 10.5 | 11.5 |
| 2b | 11.3 | 11.5 |
| 2c | 12.7 | 11.5 |
Thank you.
Solved! Go to Solution.
Hello,
The following measure should return the average for Case
Overall Average for Case =
CALCULATE(
AVERAGE( YourTable[CaseAVERAGE] ),
ALLEXCEPT( YourTable, YourTable[Case] )
)
This measure should return the overall average
Overall Average of Case Averages =
AVERAGEX(
VALUES( YourTable[Case] ),
CALCULATE( AVERAGE( YourTable[CaseAVERAGE] ) )
)
Let me know if you need more help 🙂
Hello,
The following measure should return the average for Case
Overall Average for Case =
CALCULATE(
AVERAGE( YourTable[CaseAVERAGE] ),
ALLEXCEPT( YourTable, YourTable[Case] )
)
This measure should return the overall average
Overall Average of Case Averages =
AVERAGEX(
VALUES( YourTable[Case] ),
CALCULATE( AVERAGE( YourTable[CaseAVERAGE] ) )
)
Let me know if you need more help 🙂
Great! Thank you..
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!
| User | Count |
|---|---|
| 97 | |
| 76 | |
| 52 | |
| 51 | |
| 46 |