Displaying Null Values with Expression Builder (1 Viewer)

DBDUDE

Registered User.
Local time
Today, 01:09
Joined
Aug 16, 2006
Messages
10
Hi. I am using Expression Builder to total 3 columns for a query.

Total: [BaseTotal]+[ClickTotal]+[Adj Total]

The [Adj Total] is sometimes empty, and when this happens, Total is empty even though there are values for [BaseTotal] & [ClickTotal]. How can I make the Total show up regardless of whether any of the three items used to calculate it are Null?

Thanks
 

KenHigg

Registered User
Local time
Today, 04:09
Joined
Jun 9, 2004
Messages
13,327
Maybe:

Total: nz([BaseTotal])+nz([ClickTotal])+nz([Adj Total])


???
 

DBDUDE

Registered User.
Local time
Today, 01:09
Joined
Aug 16, 2006
Messages
10
That did the trick, thanks much!
 

Users who are viewing this thread

Top Bottom