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
resource@pcdatasheet.com
>I have three fields in Form View:
> Loan Amount
[quoted text clipped - 3 lines]
> 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?
Douglas J. Steele - 29 Jul 2007 12:37 GMT
To handle the possibility that Added Fees might be null, you should use the
Nz function:
Loan Amount Total:[Loan Amount] + Nz([Added Fees], 0)
I agree that a second table is likely more appropriate. Of course, the query
would then need to join the two tables together, and use the Sum function on
the AddedFeeAmount field. Again, if it's possible that there aren't any
added fees, remember to use a Left Join so that you get all rows from
tblLoan, whether or not there are matching rows in tblLoanAddedFee.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> 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
[quoted text clipped - 30 lines]
>> 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?
Dave - 29 Jul 2007 18:06 GMT
Steve,
Thank you for your reply.
I have continued in the way that i was going and have placed a query as you
suggested. This has worked fine, even with the fact that sometimes the added
fees are £0.00.
I have bashed about with this for a quite a while now and seems to hold up,
so once again thanx
> 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
[quoted text clipped - 30 lines]
> > 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?