Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Can Qlikview do conditional formatting?

Is it possible to do conditional formatting in Qlikview like the kind of thing below created in Microsoft Excel?

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

You can use the ColorMix Wizard

Capturar.PNG

View solution in original post

7 Replies
devarasu07
Master II
Master II

Hi,

It can be done, can you share you mock data.

you just need apply conditional formating in the measure section like below if condition

if(sum(WeekTurn)>=8 and sum(WeekTurn)<=17.99,rgb(204, 255, 204),

if(sum(WeekTurn)>=18 and sum(WeekTurn)<=19.99,rgb(255, 173, 51),

if(sum(WeekTurn)<=9.999,rgb(255, 173, 51),

RGB(250, 128, 114))))

also check my sample app attached one.

Thanks,Deva

prieper
Master II
Master II

COLORMIX-function may help you

Peter

Clever_Anjos
Employee
Employee

You can use the ColorMix Wizard

Capturar.PNG

Anonymous
Not applicable
Author

Thanks everyone.

I have used the ColorMix Wizard to create the following table in Qlikview but when there is no value the background colour is showing as red i.e. see Care Experience below.  Is there a way to show the background colour as white when there is no value?

Thanks

Greg

Clever_Anjos
Employee
Employee

Yes, you can

  1. Copy your expression
  2. Go to BackgroundColor expression
  3. Use something like this

     If ( IsNull( <yourexpression> ) , White(), <colormix generated expression> )

Anonymous
Not applicable
Author

Thanks very much