Forum Discussion

mosam's avatar
mosam
Frequent Visitor
2 years ago
Solved

DAX

A telecom company has a packet core KPI monitoring system called U2020 (Huawei). It generates some KPIs during busy hours. Currently, it is linked to three main telecom nodes: USN9810, USN02, and Clo...
  • v-zhangti's avatar
    2 years ago

    Hi, mosam 

     

    You can try the following methods.

    Measure color = Var _minvalue=CALCULATE(MIN('Table'[KPI_VALUE]),ALLEXCEPT('Table','Table'[NODE_NAME]))
    Return
    IF(SELECTEDVALUE('Table'[KPI_VALUE])=_minvalue,"Yellow",BLANK())

    Apply font conditional formatting to all fields.

    Result:

    Is this the result you expect?

     

    Best Regards,

    Community Support Team _Charlotte

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