Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Panto
Helper I
Helper I

Average of Averages

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 Deatil2020-04-29 19_27_19-Window.png

 

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

Follow me on Twitter:@PantoMvp
Get in contact on Linkedin: Fabio Fantoni
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

The general pattern is:

 

Measure = 

  AVERAGEX(

    SUMMARIZE(

      'Table',

      [Group],

      "__Average",AVERAGE('Table'[Column])

    ),

    [__Average]

  )


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

The general pattern is:

 

Measure = 

  AVERAGEX(

    SUMMARIZE(

      'Table',

      [Group],

      "__Average",AVERAGE('Table'[Column])

    ),

    [__Average]

  )


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

 Hi @Greg_Deckler 

 

thanks for your feedback.

 

It's exactly what I was looking for.

 

 

Regards

Follow me on Twitter:@PantoMvp
Get in contact on Linkedin: Fabio Fantoni

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors