Forum Discussion

Raul's avatar
Raul
Icon for Post Patron rankPost Patron
8 years ago
Solved

Total is wrong in a matrix

Hello,   I have this matrix visualization:       The value of the matrix it's a measure like this: Hour = IF(SELECTEDVALUE(Calendar[Year])=2017;SUM(T1[Hours]);IF(SELECTEDVALUE(T2[Type])="A...
  • v-ljerr-msft's avatar
    v-ljerr-msft
    8 years ago

    Hi Raul,

     

    Could you try using the formula below to create a new measure to see if it works? :smileyhappy:

    Measure = SUMX ( SUMMARIZE ( T2; T2[Type]; "abc"; [Hour] ); [abc] )
    

     

    Regards