Forum Discussion

dc52's avatar
dc52
Frequent Visitor
2 years ago
Solved

Hierarchy Not displaying subtotal correctly

Hello, I am working on a matrix visual for college programs where I am hoping to divide up students by a hierarchy of Schools and Majors but the subtotals for Schools is displaying incorrectly. Any ...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi dc52 ,

    You can modify your measure like the example below (other measures also modify like the example, you can refer to the attachement of pbix file):

    Events Count by Major_ = 
    VAR _school = SELECTEDVALUE(Students[School])
    RETURN
    CALCULATE(
        DISTINCTCOUNT('Events'[ID Name]),
        FILTER('Students','Students'[School]=_school))

    And then add a new measure, put the new measure into Matrix:

    Events Count by Major =
    SUMX(VALUES(Students[School]), [Events Count by Major_])

    Final output:

    Best Regards,

    Ada Wang

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