show/hide this revision's text 2 updated for access

In MSSQL you'd just write

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

SELECT Column1, Column2, ISNULL(Column3,0)+ISNULL(Column4,0IIF(ISNULL(Column3),0,Column3) + IIF(ISNULL(Column4),0,Column4) AS [Added Values]
FROM Table

ISNULL can be used inside aggregates, too (SUM, AVG, etc.).

show/hide this revision's text 1

In MSSQL you'd just write

SELECT Column1, Column2, ISNULL(Column3,0)+ISNULL(Column4,0) AS [Added Values]
FROM Table

ISNULL can be used inside aggregates, too (SUM, AVG, etc.).