Totaling 3 fields

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 3 fields in my form...I want to add them and total them in another
field...I tried an unbound box and the total keeps giving me the entire
amount in the database...I just want the amount in that one record...
 
Kelly,

I assume you mean you have four controls on this form, three which are bound
and the fourth which is unbound.

I'll assume that these are named txt_Field1, txt_Field2, txt_Field3, and
txt_Field4, and that the underlying field names are (Field1, Field2, and
Field3). In the Control source of txt_Field4 enter: = [Field1] + [Field2]
+ [Field3]

HTH
Dale
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top