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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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