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

Background Colour for Table

Hello Guys,

 

I have created a simple table which contains only percentages. Dimension is YearMonth. I want the cell background color to be as per below:

- <0 red

- >=18% orange

- > 18% green

 

Please help.

 

Best Regards,

Rony 

Labels (1)
1 Solution

Accepted Solutions
Prashant_Naik
Partner - Creator II
Partner - Creator II

Hi Rony,

This might help you

Percentage expression = A/B

if(Percentage expression<0.00,red(),
if(Percentage expression>0.00 and Percentage expression<=0.18,
cyan(),
green()
)
)

Regards,

Prashant

View solution in original post

2 Replies
Prashant_Naik
Partner - Creator II
Partner - Creator II

Hi Rony,

This might help you

Percentage expression = A/B

if(Percentage expression<0.00,red(),
if(Percentage expression>0.00 and Percentage expression<=0.18,
cyan(),
green()
)
)

Regards,

Prashant

ronman10
Creator
Creator
Author

Thanks Prashanth!

 

Best Regards,

Rony