I'm working on a database for oil well check disbursements. The table tblOwners stores the investor names and their investment interest percent for each oil well. When a royalty check is to be disbursed, the appropriate lease is selected and the total check amount [CheckAmt] is entered by the user in a main form called frmChecks. The owner names and interest percents are displayed in a subform called fsubChecksWritten. The subform automatically calculates the estimated check amount by multiplying [CheckAmt] by [InterestPercent].
Now for the problem: sometimes an investor's check amount needs to be adjusted for expenses incurred. I would like to be able to enter the expense amount in the subform by the appropriate owner's name and have the subform calculate the actual check amount. I originally created the adjustment field in the subform as an unbound text box, but when I enter a value for one investor, the amount is distributed to *all* of the investors. How can I get the subform to let me enter different adjustment amounts for each owner?
Now for the problem: sometimes an investor's check amount needs to be adjusted for expenses incurred. I would like to be able to enter the expense amount in the subform by the appropriate owner's name and have the subform calculate the actual check amount. I originally created the adjustment field in the subform as an unbound text box, but when I enter a value for one investor, the amount is distributed to *all* of the investors. How can I get the subform to let me enter different adjustment amounts for each owner?