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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Colour code by expreesion

Hi all ,

does the following code is correct? not working actually

if(Status='Sanctioned But Not Disbursed',$(Blue),

if((Today-Date1)>=0 and (Today-Date1)<=1,$(Pink),

if((Today-Date1)>=2 and (Today-Date1)<=3,$(Yellow),

if((Today-Date1)>=4 and (Today-Date1)<=5,$(Green),

if((Today-Date1)>=6 and (Today-Date1)<=14,$(Blue),

if((Today-Date1)>=15 and (Today-Date1)<=30,$(Blue),

if((Today-Date1)>=31,$(Beige))))))))

Any Advice

Regards

Charlie

21 Replies
vinieme12
Champion III
Champion III

create your Day buckets during data load, and then refer them in the Color expressions

example

Pick(Match(DayBucket,'0-1 Days','2-3 Days',.........),red(),green(),......)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
dsharmaqv
Creator III
Creator III

use num function in your expression like below

If(num(Today())-num(Date1)>=1,Red(),Blue())