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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
ashmitp869
Responsive Resident
Responsive Resident

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.


Click here to visit my LinkedIn page

View solution in original post

2 REPLIES 2
danextian
Super User
Super User

Your measure looks fine but what result do you expect?





Dane Belarmino | Microsoft MVP | Proud to be a Super User!

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


"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.


Click here to visit my LinkedIn page

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.