Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Solved! Go to Solution.
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]
)
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.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |