in reply to Re: if not defined
in thread if not defined

The above condition is not equivalent to what you posted earlier.

NOT( DEFINED(A) AND DEFINED(B) AND DEFINED(C) ... )
is equivalent to:
( NOT DEFINED(A) ) OR ( NOT DEFINED(B) ) OR ( NOT DEFINED(C) ) ...

That's De Morgan's theorem.


TGI says moo