put 0 in a null field

  • Thread starter Thread starter dan
  • Start date Start date
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.
 
Back
Top