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
paulomartins
Frequent Visitor

Measure to sum a column based on other tables column

Hello guys, it's my first post here and I'm very glad to be part of this forum.

 

Recently I'm trying to deal with a logical sum in DAX and to be honest I not dealing with it really well...

 

My problem is:

 

I have 3 tables:

 

paulomartins_0-1657066142563.png

 

paulomartins_1-1657066191404.png

 

paulomartins_2-1657066220496.png

 

I want to sum the MB52[Quantity] based on Current and Old Keys, reaching this result:

 

paulomartins_3-1657066242560.png

 

Identifying [Current Key] and suming the quantity of the [Old. Key] with owns [Current Key] quantity.

 

I tried this code but with no sucess 😞

 

[Sum. Quantity] =
IF
(

'KEYS'[Old. Key] <> "";

CALCULATE(SUM(MB52[Quantity]) ; MAX(MB52[Key]) = MAX('KEYS'[Old. Key])) + CALCULATE(SUM(MB52[Quantity]) ; MAX(MB52[Key]) = MAX('KEYS'[Current Key]));

SUM(MB52[Quantity])

)

 

I apreciate a lot your help and thanks anyway 🙂

1 ACCEPTED SOLUTION
vapid128
Solution Specialist
Solution Specialist

in MB52 table

add colnum

current key

var _newKey=lookupvalue(keys[current key],keys[old key],MB52[KEY])

return

if(_newKey = blank(), MB52[KEY],_newKey)

 

then make relationhip MB52[current key] and product[current key]

View solution in original post

2 REPLIES 2
paulomartins
Frequent Visitor

It's not the expected way I was thinking to reach it, but it worked like a charm hahahaha

 

Thanks so much! 

vapid128
Solution Specialist
Solution Specialist

in MB52 table

add colnum

current key

var _newKey=lookupvalue(keys[current key],keys[old key],MB52[KEY])

return

if(_newKey = blank(), MB52[KEY],_newKey)

 

then make relationhip MB52[current key] and product[current key]

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