Form contains calculation but not updating tables

  • Thread starter Thread starter Trisha
  • Start date Start date
T

Trisha

I have a form that adds several columns together and
diplays them in the form. I want to update a column in my
table with that total number without calculating it myself
and entering it. Is there some way for me to do this?

Thanks,
Trisha
 
Trisha said:
I have a form that adds several columns together and
diplays them in the form. I want to update a column in my
table with that total number without calculating it myself
and entering it. Is there some way for me to do this?

It's considered poor design practice to store values than can be derived
from other fields. Just put your calculation into a query along with the
other fields from your table and then use the query every place you would
ordinarily use the table. You're using a computer so let it compute!
 

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