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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ashmitp869
Helper V
Helper V

Help need to calculate budget * MP from two different tables

Hi,

I have a scenario where I need to calculate against CostItem ( Cost_item_id)

Budget * MP 

ashmitp869_2-1733105595302.png

BudgetMarkup = 
VAR _tb = SUMMARIZECOLUMNS(CostItem[Cost_item_id],Budget_Markup[CostItemId],Budget_Markup[MP],"Budget",[Budget])
RETURN

CALCULATE(SUMX(_tb,[MP]*[Budget]) , CostItem[Is_terminal]=true)

 

The relationship is

ashmitp869_0-1733105103496.png

 

Attaching a sample file.

https://github.com/suvechha/samplepbi/blob/main/sample_b.pbix

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure what is your expected result, but please try something like below.

 

BudgetMarkup =
VAR _tb =
    SUMMARIZECOLUMNS (
        CostItem[Cost_item_id],
        Budget_Markup[MP],
        "Budget", [Budget]
    )
RETURN
    SUMX ( _tb, [MP] * [Budget] )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

View solution in original post

2 REPLIES 2
danextian
Super User
Super User

Your measure looks fine but what result do you expect?










Did I answer your question? Mark my post as a solution!


Proud to be a Super User!









"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.
Jihwan_Kim
Super User
Super User

Hi,

I am not sure what is your expected result, but please try something like below.

 

BudgetMarkup =
VAR _tb =
    SUMMARIZECOLUMNS (
        CostItem[Cost_item_id],
        Budget_Markup[MP],
        "Budget", [Budget]
    )
RETURN
    SUMX ( _tb, [MP] * [Budget] )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
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!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.