Forum Discussion

JohannesM's avatar
JohannesM
Helper I
3 years ago

Getting the column sum when multiplying with another table.

Hi,

 

I have two tables and I'm using DAX to multiply a column from table1 with a column from table2. The two tables are connected by a key so it is multiplying per row (the key is built on Group and Year).
It all looks good if I include both columns in the visualisation but if I remove the column from table2 then the sum I get is as if I muliplied with the total from table2, not row by row. My data is sensitive but it looks like this:

 

table1                                             table2

GroupYearCost  GroupYearProd
A20201  A202016
A20213  B202015
A20225  C202018
B20203  A20213
B20216  B20211
B20228  C202118
C20205  A202218
C20216  B202219
C20227  C20223

 

Measure1 =

VAR cost = SUM('table1[Cost])

VAR prod = SUM('table2[Prod])

RETURN

cost*prod

 

I guess I need to tell DAX to sum Prod row by row and I have tried but with no success. Suggestions anyone?

 

Thanks in advance!

3 Replies