Forum Discussion
KPIs & Conditional Formatting
- 1 year ago
Hi TLW_STL ,
The KPI visual in Power BI does not support built-in icons, but you can create a custom KPI card with conditional formatting.
Steps:
Create a Measure for TrendTrend_Indicator = IF([KPI_Measure] > 0, "▲", IF([KPI_Measure] < 0, "▼", "-"))Change Colors using Conditional Formatting
Select the Card visual.
Click on the "Format" pane (paint roller icon).
Expand Data Label > Conditional Formatting.
Set Green for Positive and Red for Negative.Also , you can check below link:
https://www.youtube.com/watch?v=V-kFHYhiVvw
Please mark this post as solution if it helps you. Appreciate Kudos.
Hi TLW_STL ,
The KPI visual in Power BI does not support built-in icons, but you can create a custom KPI card with conditional formatting.
Steps:
Create a Measure for Trend
Trend_Indicator =
IF([KPI_Measure] > 0, "▲", IF([KPI_Measure] < 0, "▼", "-"))
Change Colors using Conditional Formatting
Select the Card visual.
Click on the "Format" pane (paint roller icon).
Expand Data Label > Conditional Formatting.
Set Green for Positive and Red for Negative.
Also , you can check below link:
https://www.youtube.com/watch?v=V-kFHYhiVvw
Please mark this post as solution if it helps you. Appreciate Kudos.