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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
jbradley16
Frequent Visitor

Weighted Average Held By Constant Weight

Hello all, I'm attempting to compare two values of Weighted Average Price over a pre and post date set. The formulas I currenlty have are setup like:

 

Post Period Weighted Avg: sumx(table, quantity * price)/sum(quantity)

Pre Period Weighted Avg: calculate('formula above', all(postdatetable),userelationship(table,predatetable)

 

The quantity in the post period needs to be held to the same constant value as the pre period quantity. when I attempt to use something like:

 

Constant WAP: sumx(PostPeriodWAP*calculate(sum(quantity),all(postdatetable),userelationship(table,predatetable)))/calculate(sum(quantity),all(postdatetable),userelationship(table,predatetable))

 

I get some crazy numbers. How do I go about holding this pre-period constant? The pre period is set to a slicer value to allow the end user to custom set their pre and post period. 

1 REPLY 1
v-shex-msft
Community Support
Community Support

HI @jbradley16,

 

I can't understand your formula, can you please explain more about these with some sample data and expected result?

 

If you mean nested measures, you can try to use below formula if it suitable for your requirement:

 

Pre Period Weighted Avg =
VAR temp =
    SUMX ( ALLSELECTED ( table ), [quantity] * [price] )
        / SUM ( table[quantity] )
RETURN
    CALCULATE (
        temp,
        ALL ( postdatetable ),
        USERELATIONSHIP ( table[date], predatetable[date] )
    )

Constant WAP =
VAR temp =
CALCULATE (
SUM ( table[quantity] ),
ALL ( postdatetable ),
USERELATIONSHIP ( table[date], predatetable[date] )
)
RETURN
SUMX ( ALLSELECTED ( table ), [Pre Period Weighted Avg] * temp )
/ temp

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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