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

Table Alert (Green and Red)

Hi

I have table report like

Year,Total Sales.

If sales >3000 means then my record should display red cell else green.

How can i achieve this.

Thanks

Govind R

1 Solution

Accepted Solutions
its_anandrjs

In the expression properties >> click on Plus sign >> and in the Background Properties >> write expression (=If( sales >3000, Red(),Green())

Regards

Anand

View solution in original post

3 Replies
arulsettu
Master III
Master III

try this

if(sum(sales)>3000,red(),green())

Not applicable
Author

It showing like RGB....not showing color

its_anandrjs

In the expression properties >> click on Plus sign >> and in the Background Properties >> write expression (=If( sales >3000, Red(),Green())

Regards

Anand