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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anusha_Banda
Regular Visitor

Two rules for a KPI

Hello beautiful people, 
I have a scenario, not sure how to proceed further.

I have a KPI which changes its color depending upon the value (Green if positive and red for negative). Now I have a toggle, X and Y and the KPI has to behave differently (changing its color) when switch these toggles.
For Example, Sales KPI should be in Green color when I chose Y filter measure and the same KPI should be in Red when I select X filter measure, basically having two rules for the same KPI. Any leads how do I go about this ?

Anusha_Banda_0-1673869944858.png

 

1 ACCEPTED SOLUTION

Hi @analytics-ecoma ,

 

Please try it:

color = SWITCH(TRUE(),
MAX('Table'[sales])>0 && SELECTEDVALUE('Table'[type])="x","green",
MAX('Table'[sales])<0 && SELECTEDVALUE('Table'[type])="x","red",
MAX('Table'[sales])>0 && SELECTEDVALUE('Table'[type])="y","red",
MAX('Table'[sales])<0 && SELECTEDVALUE('Table'[type])="y","green",
"white")

 

Best Regards,

Neeko Tang

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

4 REPLIES 4
analytics-ecoma
Frequent Visitor

Thanks Niko for your quick response 🙂 
I should've been more clear about the problem. 
So there needs to be two rules for the KPI. In your example,
1. X : Cell should be green if sales is positive and red if negative
2. Y : Cell should be red if sales is positive and green if negative.

Hi @analytics-ecoma ,

 

Please try it:

color = SWITCH(TRUE(),
MAX('Table'[sales])>0 && SELECTEDVALUE('Table'[type])="x","green",
MAX('Table'[sales])<0 && SELECTEDVALUE('Table'[type])="x","red",
MAX('Table'[sales])>0 && SELECTEDVALUE('Table'[type])="y","red",
MAX('Table'[sales])<0 && SELECTEDVALUE('Table'[type])="y","green",
"white")

 

Best Regards,

Neeko Tang

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

Thanks Neeko, this solution worked. Thank you so much 🙂  

v-tangjie-msft
Community Support
Community Support

Hi @Anusha_Banda ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

vtangjiemsft_0-1673934079954.png

(2) We can create a measure. 

 

color = IF(MAX('Table'[sales])>0 && SELECTEDVALUE('Table'[type])="y","green","red")

(3)Set the conditional formatting as shown in the following figure.

Picture1.pngPicture2.png

 

(3) Then the result is as follows.

Picture3.pngPicture4.png

Best Regards,

Neeko Tang

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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