René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

null [VBA]

option explicit 

sub null_

  dim l as long
' l = null ' Runtime error 94, invalid use of Null

  dim v as variant
  v = null ' ok

end sub
See also other VBA stuff