Forum Discussion

aicirtap027's avatar
aicirtap027
Frequent Visitor
7 years ago
Solved

KPI STATUS in POWER KPI MATRIX

Hi All,   I have a table with two comparison value and current value column, i want to show at the KPI STATUS column a conditional formatting. For example my Expected Target is 98% and my Minimum T...
  • v-lili6-msft's avatar
    v-lili6-msft
    7 years ago

    HI, aicirtap027 

    For your  current value comes also from a measure, so you couldn't use SUM('Source Dump'[CLIENT VIEW]) 

    Just try this formula

    Color Status =
    IF (
        'Source Dump'[CLIENT VIEW] > SUM ( 'Sheet1 (2)'[Exp Target] ),
        1,
        IF (
            'Source Dump'[CLIENT VIEW] < SUM ( 'Sheet (2)'[Min Target] ),
            2,
            IF ( 'Source Dump'[CLIENT VIEW] >= SUM ( 'Sheet (2)'[Min Target] ), 3 )
        )
    )

    Best Regards,

    Lin