What does Nz mean in VB code

R

Roger Carlson

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.
 
Top