Re: How do I read delete and write records in Access modules?

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



On Thu, 16 Aug 2007 17:48:49 -0700, Jerry McNabb
<JerryMcNabb@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote:

What is the NZ function? I've never seen it before and I can't find it in
"help" or in any books I have.

It's in the VBA help file, not the Access user-interface help. Open the VBA
editor (ctrl-G) and look for help there.

Pretty simple:

NZ(<value>, <optional argument>)

returns the value of the optional argument if value is NULL, and just returns
the value otherwise. If you leave out the second argument it returns 0 if the
value is numeric, and an empty string "" if it is text.

John W. Vinson [MVP]
.