vote up 0 vote down star

I have a SQL query (MS Access) and I need to add two columns, either of which may be null. For instance:

SELECT Column1, Column2, Column3+Column4 AS [Added Values]
FROM Table

where Column3 or Column4 may be null. In this case, I want null to be considered zero (so 4 + null = 4, null + null = 0).

Any suggestions as to how to accomplish this?

flag

5 Answers

vote up 7 vote down check

Since ISNULL in Access is a boolean function (one parameter), use it like this:

SELECT Column1, Column2, IIF(ISNULL(Column3),0,Column3) + IIF(ISNULL(Column4),0,Column4) AS [Added Values]
FROM Table
link|flag
In access, though, ISNULL is just a boolean function, not a conditional (so it only takes one parameter, and returns whether it's null). Is there a way of doing conditional things in Access? (techonthenet.com/access/functions/…) – Smashery Sep 26 '08 at 2:34
See my updated answer--untested I'm afraid. – Michael Haren Sep 26 '08 at 2:40
Yeah, I just found the IIF statement, and it works. Thanks very much! – Smashery Sep 26 '08 at 2:41
No problem, thanks for correcting my initial answer! – Michael Haren Sep 26 '08 at 2:42
Personally if you're going to be calling this query a lot then I'd create a view with null replacement already applied. It'll make your code considerably cleaner and apart from striving for elegance clean code is generally less likely to cause maintenance errors later. – Cruachan Sep 26 '08 at 12:35
vote up 3 vote down

Use the ISNULL replacement command:

 SELECT Column1, Column2, ISNULL(Column3, 0) + ISNULL(Column4, 0) AS [Added Values]FROM Table
link|flag
vote up 2 vote down

Use COALESCE.

SELECT 
   Column1, 
   Column2, 
   COALESCE(Column3, 0) + COALESCE(Column4, 0) AS [Added Values]
FROM Table
link|flag
vote up 2 vote down

Even cleaner would be the nz function

nz (column3, 0)
link|flag
Note that if you use Nz(), the Nz command is not present in the vba language directly. Normally this has no impact, but if you use linked query in Excel from Access, Nz won't work. But you can still use the iif( isnull()... ) construct. – Knox Sep 27 '08 at 13:32
vote up 0 vote down

The Nz() function from VBA can be used in your MS Access query.

This function substitute a NULL for the value in the given parameter.

SELECT Column1, Column2, Nz(Column3, 0) + Nz(Column4, 0) AS [Added Values]
FROM Table
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.