Replace null value with zero in MSAcces

amunafc

Registered User.
Local time
Today, 09:03
Joined
Dec 17, 2009
Messages
62
I have over 300, 000 records in MS Access 2003 and most of fields have null values and would like to replace them with Zeros (0s)
 
I dont know how to place that NZ in my query. Please assist.
 
try this
nz([value])
replace value with your own field
 
I think thus where we can chat without any problem
 
The useful way to use Nz() is: Nz([YourField],0) which will return [YourField] unless it is Null in which case it will return a 0.
 

Users who are viewing this thread

Back
Top Bottom