Forum Discussion

EvanGetsItDone's avatar
3 years ago
Solved

Matrix Total Value Used for Another Field

Is there any way to achieve this? Basically, for the "group sales" column, I only need to display or return the value of the Total based of the column "Group" so for this scenario, I need the ...
  • mangaus1111's avatar
    3 years ago

    Hi EvanGetsItDone ,

    you can try

    CALCULATE(
    
                    SUMX('Table'[sales]),
    
                  REMOVEFILTERS('Table'[Site]),REMOVEFILTERS('Table'[Customer])
    
    )

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