Tests the value of an expression to determine whether it is NULL.
Syntax
IsNull ( expr )
Elements
expr
IsNull returns TRUE (-1) if expr is NULL; otherwise it returns FALSE (0).
Usage
The IsNull function checks whether a Variant contains NULL. For example:
If IsNull(LoVar) Then Print "LoVar is NULL" Else Print LoVar
Example See Also