I have a form that does a bunch of contract calculations. We are now putting
the contract online and want to just export the values instead of re-writing
the calcuations in ASP. What is the easiest way to get the fields to save to
a new table?
To do as you ask, an Append query, possibly executed from a command button on
the form is one way.
If you define the calculations in a query and base the form on the query,
however, you don't have to do anything. To your app, the query looks just
like a table.
Sprinks
> I have a form that does a bunch of contract calculations. We are now putting
> the contract online and want to just export the values instead of re-writing
> the calcuations in ASP. What is the easiest way to get the fields to save to
> a new table?