Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Hide Blanks Values in Matrix - Hierarchy

Hi all,    I want to hid the blank values. I use this metric:  blanks = IF(MAX('Performance Indicator Hierarchy'[Performance Indicator Hierarchy Level 5 Name])<>BLANK(),1) and put it in the visua...
  • v-cherch-msft's avatar
    v-cherch-msft
    7 years ago

    Hi Anonymous 

    You may try to create a measure to get the correct total value.For example:

    Measure = 
    IF (
        HASONEVALUE ( Table3[Column2] )
            && MAX ( Table3[Column2] ) <> BLANK (),
        SUM ( Table3[Value] ),
        CALCULATE ( SUM ( Table3[Value] ), ALL ( Table3[Column2] ) )
    )
    

    Regards,