Forum Discussion

anglefbi11's avatar
anglefbi11
Helper I
2 years ago
Solved

card for matrix visual

hi guys i am facing a difficulty with adding card for a matrix visual   i created a matrix and the two values one of them is count of alert second is total percentge of row total   when i adde...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi anglefbi11 ,
    You can change the measure to something like this:

    Total ppercentage of alert = 
    VAR a = 
    CALCULATE(
        SUM('Table'[Alert]),
        ALL('Table')
    )
    RETURN
    SUM('Table'[Alert])/a

    Put in matrix and a card

     

    Best regards,
    Albert He

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