Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
mario-sarkis
Creator II
Creator II

Change cell color

hey all ,

how can change a cell color in a pivot table based on Conditions

Example: If (a>b, Red, a<b, Yellow).

hope you can help

Thanks

4 Replies
stabben23
Partner - Master
Partner - Master

Have a look at tab "Visual Cues"

PrashantSangle

right click on cell ->custom format cell -> background color->calculated->right Expression like

if(a>b,Red(),Yellow())

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Anil_Babu_Samineni

May be this?

If(a>b, Red(), If(a<b, Yellow(), LightCyan())

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
neha_shirsath
Specialist
Specialist

Hi,

Use Expression-

if(a>b , red(),if(a<b, yellow(), black()))

Which background color you want to change -

1) only dimension?

    Select Dimension expand + sign and your condition

2) only Expression?

    Select Dimension expand + sign and your condition

OR using Visual ques option

3) You can right click on chart properties and go to custom format cell and based on your above condition add background.