Forum Discussion

donodackal's avatar
donodackal
Icon for Helper I rankHelper I
4 years ago
Solved

Help with matrix table to not subtotal selected columns

Hi there

Is there a way that a matrix table can have a subtotal option ON but we can customise the columns it subtotals? 

I have the below table that has values that  I would like to subtotal but I don't want the text columns to have data at subtotal level (doesn't make sense anyway).

 

 

Any assistance would be appreciated. Thank you. 

  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi  donodackal ,

    I created some data:

    Here are the steps you can follow:

    You can create measures for your Text columns.

    1. Create measure.

    Text_measure =
    IF(
        NOT (ISINSCOPE('Table'[Group]))||ISINSCOPE('Table'[Index])
        ,MAX('Table'[text]),BLANK())

    2. Result:

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi  donodackal ,

    I created some data:

    Here are the steps you can follow:

    You can create measures for your Text columns.

    1. Create measure.

    Text_measure =
    IF(
        NOT (ISINSCOPE('Table'[Group]))||ISINSCOPE('Table'[Index])
        ,MAX('Table'[text]),BLANK())

    2. Result:

    Best Regards,

    Liu Yang

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly