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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
ebecerra
Microsoft Employee
Microsoft Employee

Graphing weighted average by day

I'm having a problem trying to graph the weighted average of my data. I've already tried to look in the forums for similar scenarios but didn't really find anything that I could use as baseline. Let me explain what I have in a short summarized version of my table (I will add slicers to analyze the data much better, like Machine but there are other fields).

 

Table:

DateMachineScoreSession Count
18-JanA26145000
19-JanA21142936
18-JanB10562383733
19-JanB9952242522

 

In order to get the weighted average I added the following measure:

 

WAvg = DIVIDE(
    SUMX ( 'Table', 'Table'[Score] * 'Table'[Session Count] ),
    CALCULATE ( 
        SUM ( 'Table'[Session Count] ), 
        ALLSELECTED ( 'Table' ) 
    )
)

 

 

Which does give me the right Weighted Average for Everything in the table. However, I wanted to graph the daily weighted average. This is where I'm probably not doing something right, since just selecting the Date and the new measure on the chart gives me the average of the weighted average (or something strange like that):

WAverageChart.png

The sum of these two values IS the correct weighted average for all of the data in the table. However I was expecting to see the daily Weighted Average to be:

DateWeighted Average
18-Jan996.9388022
19-Jan936.6381827

 

What am I doing wrong? Do I need a different measure to calculate the weighted average on a daily basis or something like that?

 

Thanks!

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

@ebecerra 

There shouldn't be any need to use ALLSELECTED in your Wavg measure.

The denominator should be simply the sum of Session Count in the current filter context.

 

Try this:

Wavg = 
DIVIDE (
    SUMX ( 'Table', 'Table'[Score] * 'Table'[Session Count] ),
    SUM ( 'Table'[Session Count] )
)

This should give the correct weighted average whether filtered by Date or anything else.

Does this give the correct result?

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

View solution in original post

3 REPLIES 3
dax
Community Support
Community Support

Hi ebecerra,

 

You could try to use below measure to get your result

WAvg1 = DIVIDE(
    SUMX ( 'Table', 'Table'[Score] * 'Table'[Session Count] ),
    CALCULATE ( 
        SUMx ('Table', 'Table'[Session Count] )
        
    )
)

52.png

You could compare

Measure 2 =
CALCULATE ( SUMX ( 'Table', 'Table'[Session Count] ) )

 and 
Measure 3 = CALCULATE (  SUM ( 'Table'[Session Count] ),  ALLSELECTED ( 'Table' )  )

Measure 3 will return total in each row, and measure 2 will calculate total based on current context

53.png

Best Regards,

Zoe Zhi

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

ebecerra
Microsoft Employee
Microsoft Employee

Thanks @OwenAuger ! That seemed to do the trick and all my slicers work just fine.

 

 

OwenAuger
Super User
Super User

@ebecerra 

There shouldn't be any need to use ALLSELECTED in your Wavg measure.

The denominator should be simply the sum of Session Count in the current filter context.

 

Try this:

Wavg = 
DIVIDE (
    SUMX ( 'Table', 'Table'[Score] * 'Table'[Session Count] ),
    SUM ( 'Table'[Session Count] )
)

This should give the correct weighted average whether filtered by Date or anything else.

Does this give the correct result?

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
LinkedIn

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors