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.
Hi all,
I would like to create a measure that allows me to multiply a column with monetary values by another column with percentages.
Each row has its own percentage so if I do SUM(Table(Sales amount)* SUM(Table(Percentage) the result doesn't match the value I'm trying to get because it adds the percentages and doesn't multiply them row by row
here bellow a screenshot of what I'm looking for, and another of what I actually have with the DAX I've made
Thanks for your help
Solved! Go to Solution.
Hello you are ylusing the sum function which will sum up all the percentage and multiple , to achieve what you want, use sumx
Sumx(table, [sum measure] * table[percentage])
Awesome, thanks for your help !
Hello you are ylusing the sum function which will sum up all the percentage and multiple , to achieve what you want, use sumx
Sumx(table, [sum measure] * table[percentage])