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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Multiply 2 columns from 2 different data tables

Help me!

 

I have 2 data tables link with look_up table throug Field PID:

  1. Table 1 [PID, Balance] link with Look_up table[PID]: relation n*1
  2. Table 2 [PID, RATE] link with Look_up table [PID]: relation n*1

How to calculate field RATE * BALANCE?

 

I try use SUMX & RELATE, but it not work, becaus 2 data table Tabale 1 and Table 2 not Link directly (relationship type n * n).

 

Many thanks

 

 

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

=sumx(relatedtable(table1),sumx(relatedtable(table2),table1[Balance]*table2[rate]))

View solution in original post

4 REPLIES 4
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

I tested on my side. Here's my data model.

vstephenmsft_0-1638781480119.png

 

You need to put the [PID] from Look_up table into the visual.

Measure = SUM('Table 1'[Balance])*SUM('Table 2'[RATE])

vstephenmsft_2-1638781606861.png

 

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Wow, It looks more simple. I like your solution.

I will test. Actually Table 1 and Table 2 link with 2 lookup: PID & Currency like that:

Table1 (PID, Currency, Balance)

Table2 (PID, Currency, Rate)

I will try to use your solution to check whether it works. Thank you very much

wdx223_Daniel
Super User
Super User

=sumx(relatedtable(table1),sumx(relatedtable(table2),table1[Balance]*table2[rate]))

Anonymous
Not applicable

Awesome, it works.

But could you help me to understand more about the logic here.

Function SUMX: SUMX(Table, Expression)

  • Table: Table in which the expression will be evaluated
  • Expression: Expression to be evaluated for each row of the given table

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors