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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors