Forum Discussion

CecileF's avatar
CecileF
New Member
7 years ago
Solved

Annual Average Calculations

Hello,

I would like to calculate an annual average of values. However the calculation made by power BI with the quick measure average by year only count the distinct years where there is a value which is not the calculation I want as I need the annual average taking into account years empty.

 

Please see example below :

Annual average from 2008 (empty) to 2017 made manually (Total divided by 10 years) = 165 000/10 = 16 500 whereas Power BI calculates the average of values as to know 18 333 (corresponds to 165 000/9 years with a value)

 

Étiquettes de lignes200920102011201220132014201520162017Total général
Asie Pacifique200001000015000200002000020000200002000020000         165 000  

 

In advance thank you for your help !

 

Cécile 

 

  •  

    CecileF,

     

    You may try the measure below.

    Measure =
    IF (
        HASONEFILTER ( Table1[year] ),
        SUM ( Table1[value] ),
        DIVIDE ( SUM ( Table1[value] ), COUNTROWS ( ALL ( Table1[year] ) ) )
    )
    

     

2 Replies

  • v-chuncz-msft's avatar
    v-chuncz-msft
    Icon for Community Support rankCommunity Support

     

    CecileF,

     

    You may try the measure below.

    Measure =
    IF (
        HASONEFILTER ( Table1[year] ),
        SUM ( Table1[value] ),
        DIVIDE ( SUM ( Table1[value] ), COUNTROWS ( ALL ( Table1[year] ) ) )
    )
    

     

    • CecileF's avatar
      CecileF
      New Member

      Hello,

       

      Thanks a lot for your precious help ! :smileyvery-happy:

      I just did a small change as I have filters in my model and changed the ALL in ALLSELECTED.

       

      Have a great day !

       

      Best regards

       

      Cécile