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
| Legal Entity | EDI | eStore | Manual | Grand Total |
| * USA | 43,763 | 198,983 | 371,231 | 613,977 |
| Australia | 7,904 | 4,503 | 20,714 | 33,121 |
| Brazil | 215 | 20,450 | 20,665 | |
| Canada | 4,394 | 34,116 | 38,510 |
I have a matrix visual like this in Power BI. The Grand Total for the rows calculates and displays, but I think I need a measure to calculate the row total in order to derive the percent of total in each row by Order Category (EDI, eStore, Manual).
In the end, the matrix will look like this:
| Legal Entity | EDI | eStore | Manual |
| * USA | 7.1% | 32.4% | 60.5% |
| Australia | 23.9% | 13.6% | 62.5% |
| Brazil | 0.0% | 1.0% | 99.0% |
| Canada | 0.0% | 11.4% | 88.6% |
What measures do I need to write to accomplish this?
Solved! Go to Solution.
[%] =
DIVIDE(
[Total],
CALCULATE(
[Total],
ALLSELECTED( T[Order Category] )
)
)... if you want to get visual percentages...
and this if you want to get absolute percentages:
[%] =
DIVIDE(
[Total],
CALCULATE(
[Total],
ALL( T[Order Category] )
)
)
[%] =
DIVIDE(
[Total],
CALCULATE(
[Total],
ALLSELECTED( T[Order Category] )
)
)... if you want to get visual percentages...
and this if you want to get absolute percentages:
[%] =
DIVIDE(
[Total],
CALCULATE(
[Total],
ALL( T[Order Category] )
)
)
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!
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 11 | |
| 10 | |
| 8 |