Conditional formatting

U

ukredskin

I know basically how conditional formatting works, but have encountered a
slight problem. I have a column of figures (whole numbers) in which there
are some blanks. I want to use conditional formatting to change the cell
colors to RED if the number is in the range 0 to 99, ORANGE if it is -1 to
-7, and BLUE if it is below -7. This bit I can do, however, if the cell has
no value in it I need it to stay white.
The conditional formatting appears to regard having a blank cell as the same
as having a zero in it, so it changes to RED.
Is there a way round this?
 
M

muddan madhu

condition 1 =AND(A1>=0,A1<=99,A1<>"")

condition 2 =AND(A1<=-1,A1>=-7)

condition 3 =A1<-7
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top