Sum

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

Guest

I have some fields that I enter amounts into. I also designated a total box.
How do I sum the total in the fields into my total box. I would like this
to appear in my table so I can use this on another form.
Thanks
Chey
 
Chey said:
I have some fields that I enter amounts into. I also designated a total box.
How do I sum the total in the fields into my total box. I would like this
to appear in my table so I can use this on another form.
Thanks
Chey
 
Stupid question but, what do I put as a separator and do I put the field
names in []?
 
Chey,

It sounds like you are using this sum feature on more than one form. If you
are, then you do not need to store the result in a table; possibly only the
data that you are adding together. You can put the same formula in any form.
You really want to avoid storing calculated data in a table.

In the control source property of a text box on your form, enter:
=[item1]+[item2]+[item3], etc., where [item] is the name of your control(s).
 

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