Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi guys,
need help to divide every row with a total. Is SUMX the rifht function to do it? Tried it with calculate Sumx divided by calculate sum and it did not work. Anyone an idea?
Thank You
Hello @Anonymous
Hope this helps
Create a measure for total Sum =
Sum = Sum(Table[Column])
Create a column = Divide(Table[column], Sum)
Thank you
@Anonymous , a new column
Percent = divide([value], sum(Table[Value]))
a measure
Percent = divide(sum(Table[value]), calculate(sum(Table[Value]), allselected(Table)))
Can i apply a filter to the first value?
Hi @Anonymous
If you want to apply a filter, you need to use a measure. See the difference between the following two measures.
Percent = DIVIDE(SUM('Table'[Value]), CALCULATE(SUM('Table'[Value]), ALLSELECTED('Table')))
Percent 2 = DIVIDE(SUM('Table'[Value]), CALCULATE(SUM('Table'[Value]), ALL('Table')))
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!