NOT()
. For example NOT(ISBLANK())
will look up non-empty valuesAND(value1, value2, value3)
=(AND(NOT(ISBLANK(D3)), D3<$C3))
C3
vs $C3
$C3
will keep the column constant. otherwise it kept comparing later columns with the immediately next neighbour instead of column C
. (comparing E with D, F with E, G with F and so on instead of comparing them all to C)
$C$3
- keep row and column constant, i.e. this particular cell only, don’t adjust thisC$3
- keep row constant$C3
- keep column constant=C3=MIN($C3:$I3)
=AND(NOT(ISBLANK(C3)), C3=MIN($C3:$I3))
Navigate to conditional formatting. Set the conditional formatting range to include all the values you are checking
In the custom formula field, enter =A1=MIN($A1:$N1)
. Substitute A1
for the first cell in the first row you are checking, and N1
with the last cell in the first row you are checking.