I have a form with 4 tabs. The 3rd tab is has a subform in datasheet view that lists payments. In the footer of the subform I have Text Box TotalPaid with control source:
On the form I have Text Box TotalPayments with control source:
This works fine unless there are no records in the subform in which case it is blank instead of zero.
What am I missing?
Code:
=nz(Sum([PaymentAmount]))
On the form I have Text Box TotalPayments with control source:
Code:
=(nz([frmEntryPayment_Subform].Form!TotalPaid))
This works fine unless there are no records in the subform in which case it is blank instead of zero.
What am I missing?