Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi everybody, I'm Alessandro, a new user in this forum. It is really nice to meet you!
I started using Power B.I. just this week and, !wow!, it is a really great tool!
I need a (i think basic) help for create a new measure because i don't understand how to make a simple multiplication.
I've got 2 tables (which have a join on ItemID).
TABLE A: ItemID, cost
TABLE B: SerialNumber(univ.), ItemID, Qty
For every SerialNumber i have to make (TABLE A).cost * (TABLE B).Qty
In SQL it is an easy operation, but i can't get this in Power BI.
Can anyone explain me any step to make this measure?
Thank you so mutch for the help!
Solved! Go to Solution.
Hi Alessandro,
Welcome to the forum 🙂
In this situation, you can use SUMX to iterate over the rows of 'TABLE A' and multiply each row's cost by the sum of Qty for the corresponding rows in 'TABLE B'.
In fact you can iterate over the distinct values of 'TABLE A'[cost] rather than each row of 'TABLE A':
=
SUMX (
VALUES ( 'TABLE A'[cost] ),
'TABLE A'[cost] * CALCULATE ( SUM ( 'TABLE B'[Qty] ) )
)Does a measure like this give you the result you expect?
Regards,
Owen
Hi Alessandro,
Welcome to the forum 🙂
In this situation, you can use SUMX to iterate over the rows of 'TABLE A' and multiply each row's cost by the sum of Qty for the corresponding rows in 'TABLE B'.
In fact you can iterate over the distinct values of 'TABLE A'[cost] rather than each row of 'TABLE A':
=
SUMX (
VALUES ( 'TABLE A'[cost] ),
'TABLE A'[cost] * CALCULATE ( SUM ( 'TABLE B'[Qty] ) )
)Does a measure like this give you the result you expect?
Regards,
Owen
Owen, the result is exactly what i expected. ![]()
Great, and thankyou so mutch!
Hope I'll become more skilled in this sense ![]()
Thank you again!
Alessandro M.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 22 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 44 | |
| 32 | |
| 18 | |
| 17 | |
| 17 |