I have an Invoice Form with a Payments Subform. Here are the details:
frmInvoice
InvoiceID
Customer
ShipmentID
QtyShipped
UnitPrice
frmPaymentsSubform
PaymentID
InvoiceID
CheckNum
DateReceived
Amount
An invoice can be paid in multiple payments. (One-to-Many Relationship).
I have a calculated field that takes QtyShipped * UnitPrice, which gives me my total due. That works correctly. However, I want to have another calculated field that sums all of the payments (the Amount field). Then I want another field that takes the difference between the total due and the sum of all the payments, and gives me a Remaining Due calculated field.
Right now, my TotalPaid and TotalRemaining fields are marked with '#Error'. Is that because TotalPaid is a running sum? Every day I can go in and add a payment to an invoice, so the number would be constantly changing until it was paid in full.
Any suggestions would be great!
frmInvoice
InvoiceID
Customer
ShipmentID
QtyShipped
UnitPrice
frmPaymentsSubform
PaymentID
InvoiceID
CheckNum
DateReceived
Amount
An invoice can be paid in multiple payments. (One-to-Many Relationship).
I have a calculated field that takes QtyShipped * UnitPrice, which gives me my total due. That works correctly. However, I want to have another calculated field that sums all of the payments (the Amount field). Then I want another field that takes the difference between the total due and the sum of all the payments, and gives me a Remaining Due calculated field.
Right now, my TotalPaid and TotalRemaining fields are marked with '#Error'. Is that because TotalPaid is a running sum? Every day I can go in and add a payment to an invoice, so the number would be constantly changing until it was paid in full.
Any suggestions would be great!