What does Nz mean in VB code

  • Thread starter Thread starter Joyce
  • Start date Start date
It is the NullToZero function. It will convert any Null returned to a zero
(or some other value if you so specify). This is important because most VB
variables will not accept Null as a value. The single exception is the
Variant variable type.
 
Back
Top