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 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi,
Sorry for the simple question but I am new to DAX. I am simply trying to multiple two columns from different table but the Total is not computed as expected. From the image below I would like to multiple _omiPercentage with ompOrderTotalBase. The fields are located in two different tables. As you can see below the correct value is used for SO Total 2 rows but the Total is not correct.
What is the correct expression to use for this case. Any assistance is greatly appreciated!
Thanks in advance,
Jeff
Solved! Go to Solution.
Suppose the relationship between table 'SalesOrders' and 'SalesOrderSalesPeople' is many to one, you may modify measure using DAX like pattern below and check if the total is correct:
SO Total =
SUMX (
'SalesOrderSalesPeople',
[_omiPercentage] * RELATED ( SalesOrders[ompOrderTotalBase] )
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Suppose the relationship between table 'SalesOrders' and 'SalesOrderSalesPeople' is many to one, you may modify measure using DAX like pattern below and check if the total is correct:
SO Total =
SUMX (
'SalesOrderSalesPeople',
[_omiPercentage] * RELATED ( SalesOrders[ompOrderTotalBase] )
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Perfect. Thanks!
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 | |
| 23 | |
| 23 | |
| 23 | |
| 14 |
| User | Count |
|---|---|
| 48 | |
| 33 | |
| 20 | |
| 18 | |
| 16 |