Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have two data sources and I'm trying to write a Measure that will SUM the Sales Amount column and multiply it by the Commission% of the related table. I spent an hour searching for examples of this but I haven't been able to find anything so far. Apologies if this has been solved already.
Solved! Go to Solution.
Do your tables have a relationship on [Part]?
If so, then you should be able to write something like this:
SUMX ( Sales, Sales[Sales Amount] * RELATED ( CommisionRates[Commission%] ) )
They have a relationship on a column I added in PowerQuery that's [Cust] & [Part] concatenated.
Your suggestion worked brilliantly. Thank you so much.
Do your tables have a relationship on [Part]?
If so, then you should be able to write something like this:
SUMX ( Sales, Sales[Sales Amount] * RELATED ( CommisionRates[Commission%] ) )