John has attended:
Excel Advanced course
Conditional Formatting
I am using the following in Conditional Formatting to specify a particular condition - (Cell Colour)
"Formula Is" =(V$11:V$12)<1
If V11 is <1 and V12 is >1 then the condition is set, however if V11 is >1 and V12 is <1 then the condition does not get set.
Please advise what the formula should be to return the condition if either V11 or V12 is <1.
RE: Conditional Formatting
=OR($V$11<1,$V$12<1)
try this