Forum Discussion

Tim_H's avatar
Tim_H
Helper I
5 years ago
Solved

conditional format based on calculation in matrix.

Hi   I want to add an arrow on below matrix for each month compared with the previous month.     When critical tickets increase, stay the same or get lower When Major tickets in crease, s...
  • MFelix's avatar
    5 years ago

    Hi Tim_H ,

     

    Create the following measure:

    Previous_Month_Values = COUNT('Table'[Severity]) - CALCULATE(COUNT('Table'[Severity]); DATEADD('Table'[Date];-1;MONTH))

    Now create the condittional formatting based on this measure:

     

     

    Check PBIX file attach is using a sum and not a count but works in the same way just replace use the syntax above.