Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
mosam
Frequent 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 Cloud USN (vUSN). In some cases, only one node generates KPIs, while others do not (Node 3 does not need to generate KPIs all the time). However, the attached KPI file contains cleansed KPIs, as shown in the table below. Please create a PowerBI dashboard to monitor these KPIs. For your reference, the data will be updated on a daily basis.

Example:

  • For the 'Gb_mode_attach' attached KPI, you need the minimum value during the busy hour of the day. In the dataset below, the minimum is available for the 18th hour. In the PowerBI dashboard, you should only display the KPIs highlighted in yellow."

 

MAIN_KPI_NAME

RESULT_DATE

RESULT_HOUR

NODE_NAME

KPI_NAME

KPI_VALUE

Gb_mode_attach

2023-06-05

18

USN02

Gb mode GPRS attach success rate

72.506

Gb_mode_attach

2023-06-05

18

USN9810

Gb mode GPRS attach success rate

79.879

Gb_mode_attach

2023-06-05

19

USN02

Gb mode GPRS attach success rate

73.782

Gb_mode_attach

2023-06-05

19

USN9810

Gb mode GPRS attach success rate

80.732

Gb_mode_attach

2023-06-05

20

USN02

Gb mode GPRS attach success rate

73.637

Gb_mode_attach

2023-06-05

20

USN9810

Gb mode GPRS attach success rate

80.972

Gb_mode_attach

2023-06-05

21

USN02

Gb mode GPRS attach success rate

73.226

Gb_mode_attach

2023-06-05

21

USN9810

Gb mode GPRS attach success rate

80.557

 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community 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.

vzhangti_0-1695620016257.png

Result:

vzhangti_1-1695620042110.png

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.

View solution in original post

1 REPLY 1
v-zhangti
Community Support
Community 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.

vzhangti_0-1695620016257.png

Result:

vzhangti_1-1695620042110.png

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.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

July 2024 Power BI Update

Power BI Monthly Update - July 2024

Check out the July 2024 Power BI update to learn about new features.

July Newsletter

Fabric Community Update - July 2024

Find out what's new and trending in the Fabric Community.