If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

How to use conditional formatting for this particular column

Started by katdbc, 24 Mar 2011 02:01:31 PM

Previous topic - Next topic

katdbc

I having a column called 2011 prjections vs actuals.It has basically values in percentages.If the values  is negative then it should in green  color .if its 1-5 % its yellow and all the percentage greater than 5 % should be in red.Howdo i do this using the conditional variables. which one should I use? and how do i do it?

It wil be great  if somebody can help me? still suffering wit a deliverable.


Ramesh Sanka

expression
case
when 2011 prvsactual<=0.00 then 'green'
when 2011 prvsactual between 0.01 and 0.05 then 'Yellow'
when 2011 prvsactual>0.05 then 'Red'
end
Use the above expression and apply general conditional formating.

katdbc