I want cell A1 to change to a green font if cell B1>0 and B2<=0 and B3="nw".
All three conditions must be true before A1 turns to a green font. What
would the conditional formula be?
Regards,
Gary
Alan - 18 Aug 2007 22:56 GMT
=AND(B1>0,B2<=0,B3="nw")
Regards,
Alan.
>I want cell A1 to change to a green font if cell B1>0 and B2<=0 and
>B3="nw". All three conditions must be true before A1 turns to a green font.
>What would the conditional formula be?
>
> Regards,
> Gary
Gary - 19 Aug 2007 00:15 GMT
Worked great...
Thanks!
> =AND(B1>0,B2<=0,B3="nw")
> Regards,
[quoted text clipped - 5 lines]
>> Regards,
>> Gary
T. Valko - 18 Aug 2007 22:58 GMT
Try this:
=AND(ISNUMBER(B1),B1>0,B2<=0,B3="nw")

Signature
Biff
Microsoft Excel MVP
>I want cell A1 to change to a green font if cell B1>0 and B2<=0 and
>B3="nw". All three conditions must be true before A1 turns to a green font.
>What would the conditional formula be?
>
> Regards,
> Gary