I'm offline at the moment so by the time I reconnect someone may already
have posted something similar
You can shorten the conditional formulae as follows:
Red
=B2>=B1*0.95
Yellow
=B2>=B1*0.9
Green
=AND(ISNUMBER(B2),B2>0)
This is because conditional formatting is looking for a satisfied condition
(ie a "TRUE" state) so there's no need to give an "If" condition in this
case.
--
Ian
--
"Chad" <(E-Mail Removed)> wrote in message
news:16753274-8ad8-49e9-a74c-(E-Mail Removed)...
> OK I have solved it. Here is how it is done for anyone who may
> search this topic in futute.
>
> Condition 1 Red
>
> =IF(B2>=B1*0.95,TRUE,FALSE)
>
> Condition 2 Yellow
>
> =IF(B2>=B1*0.9,TRUE,FALSE)
>
> Condition 3 Green
>
> =IF(AND(ISNUMBER(B2),B2>0),TRUE,FALSE)
>
>
> Take it easy
>
> Chad
>
|