Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Find total using DAX in Matrix table

Hi All   I have a matrix table with 3 hierarchies (e.g. >$800 --> Apple --> 1.A), all my hierarchies and values are from the same Fact table. I'm trying to get the value (109,929) to calculate my S...
  • v-robertq-msft's avatar
    5 years ago

    Hi, Anonymous 

    According to your description and sample picture, I think you want to use a measure to get the value in the Matrix you highlighted. Right? You can try this measure:

    This is my test data based on your sample picture:

    Measure =
    
    CALCULATE(SUM('Table'[Computer Units]),FILTER('Table',[Level 1]=">$800"))

     

    And you can get what the value, like this:

     

    You can download my test pbix file here

     

    If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.

    How to Get Your Question Answered Quickly 

     

    Best Regards,

    Community Support Team _Robert Qin

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