put 0 in a null field

  • Thread starter Thread starter dan
  • Start date Start date
D

dan

i have a field called loan amount is there a way to put
a 0 in this field if it is null
 
Use a calculated field in place of the real field when you create the query:

MyLoanAmount: Nz([loan amount], 0)

The Nz function can be used to replace a Null value with whatever value you
specify as the second argument -- above, it's a zero.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top