Public Function VariantIsBlank( _
    ByVal vValue As Variant _
    ) As Boolean    VariantIsBlank(Null) = True
    VariantIsBlank(EmptyValue) = True
    VariantIsBlank("") = True
    VariantIsBlank("Word") = False
    VariantIsBlank(0) = False
    VariantIsBlank(123) = FalseSee also:     NullToBlank Function
    EmptyToBlank FunctionvValue: The value that will be examined to see if it is Empty, Null, or a blank String. Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.