Nulls in Modules

R

Ron Carr

Why can't I set a variable in vba to Null, when data in
recordsets is null, and I need to set the data or compare
it?
vba does not allow setting a variable to Null.
I suspect it is a setting somewhere but have not found it.
Thanks!
 
A

Alex Dybenko

if you have variable Variant type - you can assing it to null, else you cant
what variable type you have?
 
Top