Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
23 | |
21 | |
20 | |
13 | |
12 |
User | Count |
---|---|
41 | |
32 | |
23 | |
23 | |
22 |