Copy form data into table

  • Thread starter Thread starter Adam
  • Start date Start date
A

Adam

Hi All,

Forgive me if this is a stupid question.

I have a form which has some fields on it, and two calculated fields
from the four other fields.

Is it possible to have the data in the calculated fields to be input
into another table?

I want to only copy, Name, calculated field 1 and calculated field 2.

Is this possible?

Adam
 
Do a search - Asked and answered all the time.

You don't store calculated values.
 
Calculated data shouldn't be stored, it should be recalculated. What happens
if you change a value in the first table, but forget to recalculate the
value for the other table? How will you know which value is correct?

If you're determined to do this, you can use an INSERT INTO or UPDATE query
in the form's AfterUpdate event to update the other table.
 

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