Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Total Measure by Group

Legal EntityEDIeStoreManualGrand Total
* USA43,763198,983371,231613,977
Australia7,9044,50320,71433,121
Brazil 21520,45020,665
Canada 4,39434,11638,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 EntityEDIeStoreManual
* USA7.1%32.4%60.5%
Australia23.9%13.6%62.5%
Brazil0.0%1.0%99.0%
Canada0.0%11.4%88.6%

 

What measures do I need to write to accomplish this?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

[%] =
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] )
    )
)

View solution in original post

1 REPLY 1
Anonymous
Not applicable

[%] =
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] )
    )
)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.