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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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
MVP
MVP

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
MVP
MVP

May be this

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