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

SUMX help to use SUMX where rows from two tables must be subtracted.

Hello everyone

I'm having trouble solving this problem.

 

I have a Transaction table and an item table. 

In my Transaktion tabel i have a lot og columns where i wanna use the 'transaktion amount' and 'transaktion key' 

In the Items table i wanna use the 'transaktion key' and the 'item registration fee' 

I want to sum 'transaction amout', for the whole transaktion table, but where the transaktion wich is registered i the items table as a "court_fee or 'registration' are deducted.

 

So if a transaktion is a court_fee og a registration they should NOT be a part of the sum of the transaktion amount. 

 

I sorted so. both tables are only march 2022 - Where the first photo is the items table and the second is the transaktion table.

 

Screenshot 2022-03-10 at 10.36.16.pngScreenshot 2022-03-10 at 10.36.26.png

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Transaction Amount Measure = SUMX( 'transaction table',
var itemFees = CALCULATE( SUMX( RELATEDTABLE( 'items' ), 'items'[item registration fee]),
NOT( 'items'[item type] IN { "court fee", "registration fee" } )
return itemFees + 'transaction table'[transaction amount]
)

View solution in original post

3 REPLIES 3
tamerj1
Super User
Super User

@daneilroy 
Would you please share a screenshot of your data model?

johnt75
Super User
Super User

Transaction Amount Measure = SUMX( 'transaction table',
var itemFees = CALCULATE( SUMX( RELATEDTABLE( 'items' ), 'items'[item registration fee]),
NOT( 'items'[item type] IN { "court fee", "registration fee" } )
return itemFees + 'transaction table'[transaction amount]
)

Hello John! 

Thank you very much! it worked! i just had to do some formating but everything else is perfect. 

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.