T
Troy
Is there a function that searches a range for a value < 19
and if a value is found then color that cell block gray?
and if a value is found then color that cell block gray?
Troy said:Is there a function that searches a range for a value < 19
and if a value is found then color that cell block gray?
What I am looking for is if B7 is < 19 then color the-----Original Message-----
Not sure what you mean by "cell block".
You should look at Conditional Formatting (on the Format menu).
You would need a formula such as
=(OR($A$1<19,$B$1<19,$A$2<19,$B$2<19))
which would look for a value less than 19 in the range A1:B2.
.
Troy said:What I am looking for is if B7 is < 19 then color the
following cells in gray A7, B7, C7, D7, E7, F7, G7, and H7.