moving calculated data from field to the table

G

Guest

I have a table named Car Order and form Car Order Form. On Card Order form I
am calculating Sub total and Total Amount by adding few field together. For
example in control source for Sub Total fileld on a form i put:
=nz([Cash1])+nz([Certified_Check])+nz([Company_Check])+nz([Credit_Card])+nz([On_Pickup])+nz([On_Delivery])+nz([Prepaid]).
Same for Total Amount on the same form + I am adding two additional fields.
I have Sub Total and Total Amount field in table Car Order. How do I move
calculated results into this table? Thanks
 
F

fredg

I have a table named Car Order and form Car Order Form. On Card Order form I
am calculating Sub total and Total Amount by adding few field together. For
example in control source for Sub Total fileld on a form i put:
=nz([Cash1])+nz([Certified_Check])+nz([Company_Check])+nz([Credit_Card])+nz([On_Pickup])+nz([On_Delivery])+nz([Prepaid]).
Same for Total Amount on the same form + I am adding two additional fields.
I have Sub Total and Total Amount field in table Car Order. How do I move
calculated results into this table? Thanks

This is a very common question.
You need to remember that you are using Access, not Excel.

You don't.
There is no need to store redundant data.
As long as you have the various fees stored in the table, any time you
need the total, simply re-calculate them, on a form (as you are now),
in a report, or in a query.
 

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