Forum Discussion

Chetan007's avatar
Chetan007
Frequent Visitor
1 year ago
Solved

How to Create Matrix Table with percentage Total

Data:

 

Output:

How to Solve this problem!!

  • Hi Chetan007 

     

    Try this:

    DIVIDE (
        SUM ( 'Table'[Value] ),
        CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table'[Subgroup] ) )
    )
    

    That will look something like below:

    If this doesn't work, please post a sample data that can be copy-pasted to Excel and not an  image.

1 Reply

  • Hi Chetan007 

     

    Try this:

    DIVIDE (
        SUM ( 'Table'[Value] ),
        CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table'[Subgroup] ) )
    )
    

    That will look something like below:

    If this doesn't work, please post a sample data that can be copy-pasted to Excel and not an  image.