Calculated expressions in a table

G

Guest

Currently I have an unbound text box serving as a calculated expression. Is
it possible to store the result from the calculation to a field in a table?

Example:

Subtotal (unbound): $10.00
Shipping (bound): $10.00
Total (unbound): $20.00 [is it possible to save this result to a
table?]

Thanks!
 
G

Guest

If you search this discussion group about a similar question, you'll see that
there is always one answer.
It's not recomanded to store a calculated field in a table, you can always
get the resault using a query

Select Subtotal,Shipping , Subtotal + Shipping As TotalField From TableName

Storing the resault in a table will require maintnance and can cause errors,
for example, if a user will update the table directly, he'll have to remember
updating the calculated field
 

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