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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Viper1451
Frequent Visitor

Budgetprices with different Hierarchy

Hi all,

 

I just started with Power BI and did some basic courses to create measures and dashboard and I'm helping a friend now to create a dashboard. He's working in the concrete business and having budget prices on a different hierarchy. I just created this test file to explain the issue:

 

https://1drv.ms/u/s!Au2iuCVIX0mrgbE6BaK-Z4RX6H_ScA?e=YwBXNj

 

So these are the data tables I'm using (of course with a datetable):

Screenshot PBI.png

So he sells items to his customer, but the budgetprices are on productgroup level. I've created the next measure to calculate the Budget Revenue:

Budget Revenue = SUMX(fOrder;fOrder[QtyOrdered]*RELATED(dProductTable[Weight in kg])*MAX(fBudget[Budget Price per kg]))
 
Which returns the next values:
Screenshot PBI 2.png
The total should be €2.215,58 instead of €3.506 and it is taking the budgetprice of the highest year. Hopefully anyone can help and don't hesitate to contact for more details, if my question isn't clear.
 
Thanks for any feedback!
 
 
1 ACCEPTED SOLUTION
v-eachen-msft
Community Support
Community Support

Hi @Viper1451 ,

 

You need a date condition, add a filter in it.

Budget Revenue =
SUMX (
    fOrder,
    fOrder[QtyOrdered] * RELATED ( dProductTable[Weight in kg] )
        * (
            CALCULATE (
                MAX ( fBudget[Budget Price per kg] ),
                FILTER ( fBudget, YEAR ( fBudget[Date] ) = YEAR ( fOrder[OrderDate] ) )
            )
        )
)

Here is the result.
1-1.PNG

 

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

View solution in original post

2 REPLIES 2
v-eachen-msft
Community Support
Community Support

Hi @Viper1451 ,

 

You need a date condition, add a filter in it.

Budget Revenue =
SUMX (
    fOrder,
    fOrder[QtyOrdered] * RELATED ( dProductTable[Weight in kg] )
        * (
            CALCULATE (
                MAX ( fBudget[Budget Price per kg] ),
                FILTER ( fBudget, YEAR ( fBudget[Date] ) = YEAR ( fOrder[OrderDate] ) )
            )
        )
)

Here is the result.
1-1.PNG

 

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

@v-eachen-msft : thanks so much for your help and the solution!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors