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
Anonymous
Not applicable

Sum the Average of Averages per Category

Hi, 

I would like to take the average of each category and then sum them together without taking to total average. However, currently the sum is the total average. 

 

Currently this is my code: 

 

AVerage 4 = CALCULATE(
    AVERAGEX(
        SUMMARIZE( 'Test', 'Test'[category], 'Test'[Id]),
        CALCULATE( SUM( 'Test'[value) )
    ),  ALLEXCEPT( 'Test', 'Test'[Category])
   
)

HELP_PLS_0-1663053578639.png

 

I am trying to have the total be Average = 0 ´+ 1.71 + 22.88 + 0 +4.6

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, 

Found a solution

Average 7 =
SUMX (
    VALUES ( 'Test'[Category]),
    AVERAGE ( 'Test'[Value] )
)

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , Try like

 

AVerage 4 = CALCULATE(
AVERAGEX(
SUMMARIZE( 'Test', 'Test'[category]),
CALCULATE( SUM( 'Test'[value) )
), ALLEXCEPT( 'Test', 'Test'[Category])

)

 

or

 

AVerage 4 = CALCULATE(
AVERAGEX(
SUMMARIZE( 'Test', 'Test'[category]),
CALCULATE( SUM( 'Test'[value) )
)

)

Anonymous
Not applicable

Hi, 

It is still find the average for each category A,B,C,D,E  then for the "total" it is adding each average A, average B.... then dividing by 5. I would just like to to take the average of each category and add them togther 

 

Here is another measure I tried, that gives me the right averages but will not let me sum the values

Average =
CALCULATE(
    AVERAGE('Test'[Value]),
    FILTER ( ALLSELECTED ( 'Test' ), 'Test'[category] = MAX ( 'Test'[category) )
)
Anonymous
Not applicable

Hi, 

Found a solution

Average 7 =
SUMX (
    VALUES ( 'Test'[Category]),
    AVERAGE ( 'Test'[Value] )
)

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.