Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The below table shows product sales .
Header 1 | Header 2 |
---|---|
Product | Sales |
Car | 100 |
Fridge | 50 |
Television | 200 |
WashingMachine | 70 |
How can i achieve this ?
sales > 150 is to be shown in Green
sales < 80 is to be shown in Red ???
Hi Ramesh
In your chart use Properties>Visual Cues like below
You can use BG color like
If(Sum(Sales) > 150, Green(), If(Sum(Sales) < 80, Red()))
Hi,
if( sum(Sales)>150,Green(), if(sum(Sales)<80,Red()))
Thank You devarasu07 R