is there any way to do calculations in the table its self with out using a
form
like you would in excel say for instance a table with three fields
field 1) rate
field 2) time
and then field three would be d=r*t
like can in excell
thanks for the help
No, you cannot - and you SHOULD NOT.
Access is *not a version of Excel*. Excel is a spreadsheet; Access is
a relational database. THEY ARE DIFFERENT.
Storing derived data such as this in your table accomplishes
three things: it wastes disk space; it wastes time (almost
any calculation will be MUCH faster than a disk fetch); and
most importantly, it risks data corruption. If one of the
underlying fields is subsequently edited, you will have data
in your table WHICH IS WRONG, and no automatic way to detect
that fact.
Just redo the calculation whenever you need it, either as a
calculated field in a Query or in the control source of a Form or a
Report textbox. Just create a Query based on the table; in a vacant
Field cell you can type
D: [Rate] * [Time]
The query will return the appropriate value for each selected row.