How get form field data to write to table

S

Steve L

I have a form which is bound to a table. On this form I
have a calculated field. The calculation is the sum of
two other field values. How can I get the value of the
calculated field to write to a specific field in the
table?
 
A

Andrew Smith

You COULD use an update query, but you SHOULD NOT do anything!

Calculated results should not normally be stored in tables - they should be
calcuated as and when required. If you need to use the value anywhere other
than on the form then just create a query the includes the calcuation, and
use that rather than the 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

Top