Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
ramcena306
Creator II
Creator II

How to add colours ?

The below table shows product sales .

Header 1Header 2
ProductSales
Car100
Fridge50
Television200
WashingMachine70

How can i achieve this ?

sales > 150 is to be shown in Green

sales < 80 is to be shown in Red  ???

4 Replies
cristinapo
Contributor III
Contributor III

Hi Ramesh

In your chart use  Properties>Visual Cues like below

Anil_Babu_Samineni

You can use BG color like

If(Sum(Sales) > 150, Green(), If(Sum(Sales) < 80, Red()))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
devarasu07
Master II
Master II

Hi,

if( sum(Sales)>150,Green(),  if(sum(Sales)<80,Red()))

Capture.JPG

ramcena306
Creator II
Creator II
Author

Thank You devarasu07 R