How do I automatically up date a field in another table based on .

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

Guest

How do I automatically up date a field in another table based on the info I
have just entered and saved in a table in a form?
 
You could Execute an Update query statement in the AfterUpdate and
AfterDelConfirm events of the form where you saved the changes.

The more important question might be whether this is a good idea. In
general, you do not want to store a calculated total or anything where the
result depends directly on other values in the database. Instead, you want
to calculate that value at the time when you need it, so it can never be
wrong.
 

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