You should post your formula, because what you're saying is *not* correct,
as you state the situation.
For example, this *bad* formula:
=IF(A1>10,"OK",IF(A1>20,"NO GOOD","EMPTY"))
would return the *first* arguments result (OK), even though A1 contained
100.
That's because, the IF function *stops* calculation after an argument is
satisfied.
Even though A1 contains 100, which is greater then 20 (>20), it (the IF()
function) never gets to even evaluate the >20, because, since 100 is *also*
greter then 10, that satisfied the first argument and therefore *stopped*
any further calculations, and returned the first arguments result (OK).
--
Regards,
RD
--------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit!
-------------------------------------------------------------------
I have a couple of if statements nested. Is there a way
the exit the function as soon as the condition is met? If
the cell I am comparing matches more than one of my
conditions then the last condition prevails.