If you have Loan Amount Total in your table, that is not correct. Doing
that jeopardizes your data integrity. You should delete it. Base your form
on a query that includes Loan Amount and Added Fees. Put the following
expression in a blank field in your query:
Loan Amount Total:[Loan Amount] + [Added Fees]
Another observation ---
The design of your tables may not be correct. You should have something
like:
TblLoan
LoanID
LoanDescription
LoanDate
LoanAmount
LoanTermMonths
TblLoanAddedFee
LoanAddedFeeID
LoanID
AddedFeeDescription
AddedFeeAmount
PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
(e-mail address removed)
Dave said:
I have three fields in Form View:
Loan Amount
Added Fees
Loan Amount Total
I wish to have, in form view, the Loan Amount Total add the 2 previous
fields. Can anyone please explain to me how to do this?