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

Change backgroud color

Hi Experts,

I want to change colors as per the below criteria but it is not happening by me . So please help me .

More than 0% = Green

Equal to 0% = Yellow

Below 0% = Red

Untitled.png

Labels (1)
2 Solutions

Accepted Solutions
Kushal_Chawda

Go to MTD % Change expression, expand it and in bacckground color expression, put below expression

Lets say more than 70% green, equal to 50% yellow and less than 50% red, then your expression will be.

Note: I have used column(3) as your MTD % Change  is your 3rd expression, you can change it accordingly

=if(Column(3)>0.7,lightgreen(),

if(Column(3)=0.5,yellow(),

if(Column(3)<0.5,lightred())))

View solution in original post

3 Replies
Kushal_Chawda

Go to MTD % Change expression, expand it and in bacckground color expression, put below expression

Lets say more than 70% green, equal to 50% yellow and less than 50% red, then your expression will be.

Note: I have used column(3) as your MTD % Change  is your 3rd expression, you can change it accordingly

=if(Column(3)>0.7,lightgreen(),

if(Column(3)=0.5,yellow(),

if(Column(3)<0.5,lightred())))

bhuprakash
Creator II
Creator II
Author

Sorry for late response. Thanks Vikas and Kush.. issue resolved.