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
req77
Helper I
Helper I

SUM values ​​from another table with LOOKUPVALUE

Hello,
I have two tables with this structure:
TABLE1

IDAbstract_Weight    
ID001     10
ID0023
ID0035

 

TABLE2

IDHot_Weight    Cold_Weight   
ID001      13
ID0011,50
ID00121
ID00252
ID00241


I want to create columns in my TABLE1 where I can use the LOOKUPVALUE with SUM and with that, get the sum of the cold weight and hot weight values ​​for all distinct IDs. The expected result would be this:

IDAbstract_Weight    Hot_Weight    Cold_Weight    
ID001     104,54
ID002393
ID003500



1 ACCEPTED SOLUTION
v-rongtiep-msft
Community Support
Community Support

Hi @req77 ,

Please have a try.

Create 2 columns.

hot_Weight1 = CALCULATE(SUM('Table2'[Hot_Weight]),FILTER('Table2',[ID] =EARLIER(Table1[ID])))+0
Cold_Weight1 = CALCULATE(SUM('Table2'[Cold_Weight]),FILTER('Table2',[ID] =EARLIER(Table1[ID])))+0

vrongtiepmsft_0-1687489014815.png

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

If you can create a Many to one relationship from Table2 to Table, then write these calculated column formulas in Table1

CW = CALCULATE(SUM(Table2[Cold_Weight]),RELATEDTABLE(Table2))
HW = CALCULATE(SUM(Table2[Hot_Weight]),RELATEDTABLE(Table2))

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-rongtiep-msft
Community Support
Community Support

Hi @req77 ,

Please have a try.

Create 2 columns.

hot_Weight1 = CALCULATE(SUM('Table2'[Hot_Weight]),FILTER('Table2',[ID] =EARLIER(Table1[ID])))+0
Cold_Weight1 = CALCULATE(SUM('Table2'[Cold_Weight]),FILTER('Table2',[ID] =EARLIER(Table1[ID])))+0

vrongtiepmsft_0-1687489014815.png

How to Get Your Question Answered Quickly 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Rongtie

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

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.