tel 01732 833085 · e-mail david wallis
Nancy (ca 2004)
We're working on a query in Access. The query has two fields - 'Number1' and 'Number2' - that can contain a number or a null. When we create an expression field in the query, Total:[Number1]+[Number2], the total works out fine when both Number1 and Number2 contain numbers. The problem comes when one of them is null because the total then becomes null. This is not what we want of course. What do we do?
This topic is relevant to Microsoft Access 97, 2000, 2002 (XP), 2003, 2007 and 2010.
A simple solution to your problem is to use the NZ (null-to-zero) function. Try modifying your expression field to this:
Total:NZ([Number1])+NZ([Number2])
Note that when both Number1 and Number2 have null values, Total returns zero.
DMW Consultancy Limited does not accept any liability for loss or damage to data to which any techniques, methods or code included in this website are applied. Back up your data; test thoroughly before using on live data.