cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Krzysztof_Hyla
Helper II
Helper II

Mulitply columns from 2 related tables

Hi, I'm trying to build a measure (called 'Earned Hours') that multiplies 2 columns from related tables - quantities and standard hours per product.

 

My data model looks like this:

 

Data Model.jpg

 

My current measure calculates correct results per row, but does not give me correct total: 

Earned Hours = SUM('Fact Production'[Quantity])*SUM('Fact Std Hrs'[Std Hrs])

 

Output.jpg

The correct number should be:

Output 2.jpg

I have simplified my original post to make this easier to understand.

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Krzysztof_Hyla try below measure to get correct total

Measure = 
VAR _product = SUM(factProduction[Quantity])*SUM(factStdHours[StdHours])
VAR _summarize = SUMMARIZE(dimProduct,dimProduct[Product],"total",SUM(factProduction[Quantity])*SUM(factStdHours[StdHours]))
RETURN IF(HASONEVALUE(dimProduct[Product]),_product,SUMX(_summarize,[total]))

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

@Krzysztof_Hyla try below measure to get correct total

Measure = 
VAR _product = SUM(factProduction[Quantity])*SUM(factStdHours[StdHours])
VAR _summarize = SUMMARIZE(dimProduct,dimProduct[Product],"total",SUM(factProduction[Quantity])*SUM(factStdHours[StdHours]))
RETURN IF(HASONEVALUE(dimProduct[Product]),_product,SUMX(_summarize,[total]))

 

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.

Top Solution Authors
Top Kudoed Authors