cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

DAX: Weighted Average Prices From Two Tables

Hi all,

 

I'd like to calculate the Weighted Average Retail Price which was derived from the 'Sales' and 'Price' tables.  My data model is like: 

  • a 'Product' table and a 'Date' table which contains one to many relationship with the 'Sales' and 'Price' Tables
  • Weighted Average Retail Price = Summation of ('Sales'[Total Unit Sold] * 'Price'[Retail Price]) / Sum('Sales'[Total Unit Sold])

 

Product Table
- ProductID

 

Date Table
- Date

 

 

Sales Table

- ProductID

- Date

- Unit Sold

 

Price Table

- ProductID

- Price Scrapped Date

- Retail Price

 

Can anyone help with this?  Thanks in advance.

 

1 ACCEPTED SOLUTION

@Anonymous 

 

You may refer to the measure below.

Measure =
DIVIDE (
    SUMX ( 'Table', 'Table'[Qty Sold] * 'Table'[Retail Price] ),
    SUM ( 'Table'[Qty Sold] )
)

 

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , try Like

 

sumx(summarize('Product Table','Product Table'[ProductID],"_sum",sum('Sales'[Total Unit Sold]), "_avg",average('Price'[Retail Price])),divide(([_sum]*[_avg]),[_sum]))

 

Anonymous
Not applicable

Thanks amitchandak, I tried the formula but it only returns an Average instead of Weighted Average :(... 

Could you please help look into it?

 

Here's one example of Week 13.

  • Weighted Average Retail Price = $168.32 <-- this is the desired result for Week 13
    • In Excel formula = SUMPRODUCT(Retail Price, Qty Sold) / SUM(Qty Sold)
  • Average Retail Price = $171.70

 

WeekDateRetail PriceQty Sold

3/24/2019

$162.990
3/25/2019$162.991
3/26/2019$162.992
3/27/2019$162.992
3/28/2019$159.990
3/29/2019$194.991
3/30/2019$194.990

 

Thanks again for the help.

 

@Anonymous 

 

You may refer to the measure below.

Measure =
DIVIDE (
    SUMX ( 'Table', 'Table'[Qty Sold] * 'Table'[Retail Price] ),
    SUM ( 'Table'[Qty Sold] )
)

 

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors