As a general principle, you don't store computed values into tables. Those values are computed when you need them, in a query, a form or a report.
Imagine that we have a table "Sales" having one column named "Unit_Price" and one column names "Quantity". If, on a form or a report, you want to have the unit price, the quantity and the total price, you can create a query:
Code:
SELECT Sales.Unit_Price, Sales.Quantity, Sales.Unit_Price * Sales.Quantity AS Total_Price
FROM Sales;
You can then use this query to "feed" the form or the report, using their
RecordSource property. You can also perform the computations directly into the form or the report.
Just a piece of advice: Try to refrain from using spaces or other non alpha-numeric characters (the underscore "
_" is OK) in the names of the objects (Tables, Columns, Forms, Reports, etc.) in your databases, as well as using words that are reserved in Access (
Date,
Type,
Sum, etc. for a full list see:
Access 2007 reserved words and symbols - Access - Office.com). Otherwise you'll have problems, sooner or later.