View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
John Moore John Moore is offline
external usenet poster
 
Posts: 70
Default Coditional Format

Thanks Pete ,, works well .... saves me some time ,, appreciate it

"Pete_UK" wrote:

There is a hierarchy with Conditional Formatting - the first condition
takes precedence. So, make your first formula:

=C190% (set to green)

Second condition:

=C180% (set to yellow)

Third condition:

=AND(C1<80%,C1<"") (set to red)

The last condition avoids the colour if the cell is empty.

You could use AND to specify a range of values, but by setting the
conditions in this order you can avoid that.

Hope this helps.

Pete

On Jul 23, 11:23 am, John Moore
wrote:
Guys, I'm a little unsure how to complete this one. In the example below I
am trying to format cell A1 based on 3 criteria ,,, if cell C1 is less than
80% colour A1 red, if C1 is greater than 80% but less than 90% colour A1
yellow and if C1 is greater than 90% colour A1 green .... the Red and Green I
can get using the Formula Is box in the conditional format function ,, but
how do I get the "between" to work ??

A B C
1 13% 19% 68%