
Signature
I may not know VBA inside out, but from the outside I am looking in.
Dylan Moran - Melbourne Australia
> I want to do some currency calulcations on fields on a form and
> handle any nulls.
[quoted text clipped - 9 lines]
>
> Your assistance is appreciated.
You need to wrap each field in Nz, not the whole expression. Like this:
=Nz([SalesRevenue], 0)-Nz([ABCExpense], 0)-Nz([XYZExpense],0)

Signature
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)
Dylan Moran - 05 Aug 2005 06:36 GMT
Many thanks.
> > I want to do some currency calulcations on fields on a form and
> > handle any nulls.
[quoted text clipped - 13 lines]
>
> =Nz([SalesRevenue], 0)-Nz([ABCExpense], 0)-Nz([XYZExpense],0)