G
Guest
I have a report called Statement, I am using this expression to calculate and
display all payments made to each order:
=IIf(IsNull([OrderID]),0,DSum("[PaymentAmount]","[Payments]","[OrderID]=" &
[Reports]![Statement]![OrderID]))
I need it to also display $0.00 when there has been no payments made. How
wo I use the Nz function in the expression above? Also when I try to create
a Total Due on the report footer, it doesnot work. Is it because of the Null
problem in the expression above. I Think if I can get the Null problem
solved, everything else will work, I hope.
display all payments made to each order:
=IIf(IsNull([OrderID]),0,DSum("[PaymentAmount]","[Payments]","[OrderID]=" &
[Reports]![Statement]![OrderID]))
I need it to also display $0.00 when there has been no payments made. How
wo I use the Nz function in the expression above? Also when I try to create
a Total Due on the report footer, it doesnot work. Is it because of the Null
problem in the expression above. I Think if I can get the Null problem
solved, everything else will work, I hope.