Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi everyone,
I'm struggling to handle an easy formula which is a nested average computed along a table with 2 dimension (AUTORE,LINK).
Basically I need to compute first of all an average for each author (AUTORE), and then use those aggregated values to create a second level average.
AUTORE LINK VALORE
autore_1 url_A 20
autore_1 url_B 20
autore_1 url_C 20
autore_1 url_D 20
autore_1 url_E 10
autore_1 url_F 10
autore_2 url_G 20
autore_3 url_H 5
For those familiar with Tableau, you could get the correct result with a nested Level of Deatil
I've already checked a similar post (https://community.powerbi.com/t5/Desktop/Average-of-average/m-p/1017894#M481085) but I'm not sure I'm understanding 100%, especially in my case where I have 2 dimension columns and one of them (LINK) is not involved in that caluclus.
Can anyone help?
Thanks in advance.
Fabio
Solved! Go to Solution.
The general pattern is:
Measure =
AVERAGEX(
SUMMARIZE(
'Table',
[Group],
"__Average",AVERAGE('Table'[Column])
),
[__Average]
)
The general pattern is:
Measure =
AVERAGEX(
SUMMARIZE(
'Table',
[Group],
"__Average",AVERAGE('Table'[Column])
),
[__Average]
)
thanks for your feedback.
It's exactly what I was looking for.
Regards
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
10 | |
10 | |
9 | |
8 |
User | Count |
---|---|
17 | |
13 | |
12 | |
11 | |
8 |