Assuming the original amount to be collected is in the account table, you can use a query to get the current balance calculated any time (rather than storing it and having to update it when a payment is made).
Assume an Accounts table with Account and Amount (original amount to be collected) fields. You could set Account as the primary key, by the way. Assume also a Payments table with Account, Date, and Payment fields.
You build the query by adding the Accounts table and the Payments table. Then you drag a line (with the mouse) from Account in the Accounts table to Account in the Payments table. (Depending on how you set up Access and the tables, Access may already have drawn this line for you.)
Next, go to the menu and choose View>Totals. This reveals the Total: line in the query grid. Drag Account and Amount from the Accounts table to the grid. In a third column of the grid, key the following on the Field line:
Code:
Balance: Accounts.Amount - Sum(Payments.Payment)
On the Total line of that column, choose Expression from the dropdown list. Save and switch to Datasheet View. You'll have a list of accounts, their original collection amounts, and the balance due.
The line between the tables is the secret. It tells Access that you want it to keep records from both tables with the same account number grouped together. In other words, they're "related" by account number. That's why it's called a relational database. (No, your question wasn't silly. Can I keep my car now?

)
One more thing: Once you have these tables, and make Account the primary key in the Accounts table, click on the main database window and then choose Tools>Relationships from the menu. This opens the Relationships window. If you don't get the Show Tables dialog box as well, choose Relationships>Show Tables from the menu. Add these two tables to the Relationships window, then close the Show Tables dialog. Now, drag a line from Account in the Accounts table to Account in the Payments table. Access will open an Edit Relationships dialog. Click on Enforce Referential Integrity, then click the two Cascade check boxes. Finally, click Create, and close the Relationships window.
What this will do is, if you change an account number in the Accounts table, Access will automatically update it in the Payments table (Cascade Updates). And if you delete an account from the Accounts table, Access will automatically delete all the payments for that account from the Payments table (Cascade Deletes). Last and most important, Access won't let you add a payment to the Payments table unless the account number there matches one in the Accounts table (Enforce Referential Integrity). Together, these three options help you keep from having inaccurate or obsolete account numbers in the Payments table. Just remember, though, that if you delete an account and add it back, you've lost all the payment info! Rick Sprague