G
Guest
I am haveing a problem with this.
it is on a form
Sum(nz([UnitsReceived])-nz([UnitsSold]))
i can not figure out what i need to change it to to work with SQL.
Thanks in advance
Sum(IsNull([UnitsReceived], 0) - IsNull([UnitsSold], 0)) <<<<<<< this
fixed the query
it is on a form
Sum(nz([UnitsReceived])-nz([UnitsSold]))
i can not figure out what i need to change it to to work with SQL.
Thanks in advance
Sum(IsNull([UnitsReceived], 0) - IsNull([UnitsSold], 0)) <<<<<<< this
fixed the query