How to use Excel functions

R

Runner

Hi, can anyone tell me how to use the if function to highlight a cell in
green color if the value is greater 500 or less than 100 in a column?
 
A

Andy Brown

You should end up with a Conditional Formatting formula akin to:

=AND($A1<>"",OR($A1<100,$A1>500))
 
Top