P
Pat
The following custom validation is not correct, anyone know what is wrong
with it?
=if(K22 ="QS")=J98<=M98
Pat
with it?
=if(K22 ="QS")=J98<=M98
Pat
=AND(K22="QS", J98<=M98)
if the J98<=M98 test only applies if K22 does not ="QS", then
=AND(K22<>"QS", J98<=M98)
if either the J98<=M98 test applies or if K22 ="QS", then
=OR(K22="QS", J98<=M98)
=OR(AND(K22<>"QS", J98>M98),AND(K22="QS", J98<=M98))
=OR(AND(K22 said:Which cell is this going in, J98 or M98, and how about laying out a
decision
table?