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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
zbalder
Frequent Visitor

Dynamic Color Direction in KPI

Hey guys, do you have a workaround to dynamicly toggle the "Color Direction" option in a KPI? I have a table where depending on a flag some records will be displayed as "High is good" but some others should display as "Low is good".

 

Thanks for your help!

5 REPLIES 5
Anonymous
Not applicable

@zbalder,

Could you please share dummy data of your table and display these good records here?

Regards,
Lydia

Hi Lydia,

 

Here is some sample data, the idea is that the user will have a drop down (slicer) with the codes in it and select each code to see different charts and info about how each code is doing over time, the Dim table has the Code Name, Type of Code and Target Goal, the Fact table has the Amount and the Date.

 

CodeAmountTarget GoalType of Code
# of registrations54Good is high
# of cancellations31Good is low
# of applications68Good is high
# of rejections21Good is low

 

So for example when the user selects "# of registrations" I want my KPI to look Green (Good color) as 5 is over the Target and Good is high.

But when the users select "# of cancellations" I want to the KPI to look Red (Bad Color) as 3 is over the Target Goal of 1, or if there were 0 # of cancellations then it will display Green (Good Color) as the value would be under the Target.

 

Does that make sense?

 

Thanks! 

Anonymous
Not applicable

@zbalder,

A workaround is to create the following columns in your table and create KPI as follows.

Column = IF(Table[Type of Code]="Good is low",0-Table[Amount],Table[Amount])
Column 2 = IF(Table[Type of Code]="Good is low",0-Table[Target Goal],Table[Target Goal])


1.JPG
Regards,
Lydia

Thanks Lydia, I had thought about this solution, but displaying negative values in the KPI won't be an acceptable visual for the user, I think there is no way, do you know how easy will it be to modify the current KPI Visual to accept a field in the Direction option?

Anonymous
Not applicable

@zbalder,

I can't think other method to achieve your requirement.

Regards,
Lydia

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors