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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
evansabres
Specialist
Specialist

If statement and color expression

I am attempting to format the background color of measure if my chart. The current expression I am using is:

=if(Max(DATE(crmDATE)) >= today(), rgb(0,255,0), rgb(255,0,0)) returning green if the date is greater than today or red if anything else. I want to introduce a third variable of returning the background of yellow if the maxdate is today -1. How can I introduce this into my equation?

Labels (2)
1 Solution

Accepted Solutions
sunny_talwar

May be this

If(Max(crmDATE) >= today(), RGB(0,255,0),
If(Max(crmDATE) = Today() - 1, Yellow(), RGB(255,0,0)))

View solution in original post

1 Reply
sunny_talwar

May be this

If(Max(crmDATE) >= today(), RGB(0,255,0),
If(Max(crmDATE) = Today() - 1, Yellow(), RGB(255,0,0)))