Forms

  • Thread starter Thread starter AFKAFB
  • Start date Start date
A

AFKAFB

I've a form which is bound to a table - on the face of the form it
sometimes returns calculated results. However, i also need to record
the calculated result on the table too.
What i've been doing is running an update query when the form unloads
but there must s more correct way of doing this.
 
well, there really isn't a "correct" way, because saving calculated data to
a table violates data normalization rules. as long as you have the base
values saved as hard data, you can run the calculations anytime you need
to - in a query, form, or report.

if you're going to do it, regardless, then an update query is as good a way
as any.

hth
 

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