- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Average in Matrix
Hello all,
I need your help urgently.
I have a dataset like in the example but extremely larger.
I now want to condense the average of the values more and more, but the average is unfortunately always calculated over all parts.
The result of A1 and B2 is correct.
However, the result under 1 should now be 833,335 and not 1200. Unfortunately, all parts are recalculated and not the condensed one.
I would like to see under 1 the average of A and B
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Andy1984 ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _table1=
SUMMARIZE(
'Table','Table'[Group],"Avg",AVERAGE('Table'[Value]))
return
IF(
ISINSCOPE('Table'[Elite Group])&&NOT(ISINSCOPE('Table'[Group])),
DIVIDE(
SUMX(_table1,[Avg]),
COUNTX(_table1,[Group]))
,
AVERAGEX(
'Table',[Value])
)
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Andy1984 ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _table1=
SUMMARIZE(
'Table','Table'[Group],"Avg",AVERAGE('Table'[Value]))
return
IF(
ISINSCOPE('Table'[Elite Group])&&NOT(ISINSCOPE('Table'[Group])),
DIVIDE(
SUMX(_table1,[Avg]),
COUNTX(_table1,[Group]))
,
AVERAGEX(
'Table',[Value])
)
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
03-11-2022 01:24 AM | |||
08-01-2022 02:10 PM | |||
10-18-2024 08:37 AM | |||
01-10-2025 05:58 AM | |||
09-12-2024 01:54 PM |
User | Count |
---|---|
87 | |
81 | |
53 | |
38 | |
35 |