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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Anonymous
Not applicable

Weighted Average DAX Expression

Dear All,

i have list of multiple category to calculate Weighted Averages, to calculate Weighted avg first i have to filter Month, SKU, then Traders In excel. i applied Sumproduct formula and i am getting exect Weighted Avg Number.

But when i tried to apply DAX Expression i am not getting the exact number. 

Nitin_Rajsoni_0-1660623000260.png

Weighted Average =

DIVIDE (

SUMX ( 'Table', [SumMillion Ton] * [Rate Per] ),
SUMX ( 'Table', [Million Ton] )
)   

Kindly help to resolve this query.

 

Thanks in Advance  

1 ACCEPTED SOLUTION

@Anonymous 
Then my original DAX formula should give the exct result.

View solution in original post

18 REPLIES 18
tamerj1
Super User
Super User

Hi @Anonymous 

please try

Weighted Average =
VAR CurrentTable =
    CALCULATETABLE (
        'Table',
        ALLEXCEPT ( 'Table', 'Table'[Traders Name], 'Table'[SKU], 'Table'[Month] )
    )
RETURN
    DIVIDE (
        SUMX ( CurrentTable, [SumMillion Ton] * [Rate Per] ),
        SUMX ( CurrentTable, [Million Ton] )
    )
Anonymous
Not applicable

Dear Tamerj,

Thanks for the update, As i have applied the fourmula which you provided but still i am not getting the exact value.    

Hi @Anonymous 
Can you please advise what is the formula that you have used in excel for the numerator and the denominator?

Anonymous
Not applicable

@tamerj1 To get value i am using Sumproduct formula- =SUMPRODUCT(MT*FSU)/SUM(MT) 

@Anonymous 
Apparently some of the provided information is no accurate. Are you sure you are filtering by month as well? As the sample screenshot does not say so. Please share the sample Excel file in order to verify exactly how the calculation is supposed to be handled. Thank you

 

Anonymous
Not applicable

@tamerj1 Data Sheet Kindly find the attcahed sheet for reference.

 

 

Hi @Anonymous 
I cannot download 

Anonymous
Not applicable

Are you able to access now ?

@Anonymous 
Yes. But There is no formula for WA Avg

Anonymous
Not applicable

@tamerj1 Data As suggested i have added the formula in attcahed sheet.

 

Please Chk and let me know 

Hi @Anonymous 
This seems to me completely random

1.png

Anonymous
Not applicable

Data Set @tamerj1 I have added the updated sheet for reference.

Please check and let me know  

@Anonymous 
Still random! are you sure the DAX formula outcome is not correct?

1.png

Anonymous
Not applicable

In this report i am filtering the data Month follow with SKU then Importer name. Once will select the Importer name. then i applied the Sumproduct formula to find WA

eg : =SUMPRODUCT($P$5446:$P$5585,$I$5446:$I$5585)/SUM($I$5446:$I$5585)

Nitin_Rajsoni_0-1660649437611.png

 

  

@Anonymous 
Then my original DAX formula should give the exct result.

Anonymous
Not applicable

Thanks for your support i will apply the same DAX Formula as you suggested.

Anonymous
Not applicable

Yes still their is some difference in WA, As suggested i have applied the below formula but  number is not matching  

Weighted Average =
VAR CurrentTable =
CALCULATETABLE (
'Data 22',
ALLEXCEPT ( 'FData 22', 'Data 22'[IMPORTER NAME], 'Data 22'[SKU], 'Data 22'[MONTH], 'Data 22'[YEAR] )
)
RETURN
DIVIDE (
SUMX ( CurrentTable, [MT Vol] * [Rate Per FSU] ),
SUMX ( CurrentTable, [MT Vol] )
)

@Anonymous 

Great. I'll look into it once I'm back to office. 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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