Forum Discussion
mosam
2 years agoFrequent Visitor
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...
- 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.
v-zhangti
2 years agoCommunity Support
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.