You do not store calculated values in a tabel. That would be redundant if
you already have the data needed to perform the calculation stored. What
happens if you change value one later? How does the table know to update
the SUM? Would you really want it to recalculate all these values every
time you open your table?
This should be done in the form or report using an unbound text box...
=[field1] + [Fiedl2]
or as a caluculated field in a query...
SumOfFields: [Field1] + [Field2]
Rick B
"formulas in table cells." <formulas in table
(e-mail address removed)> wrote in message
Can you enter a simple sum formula in a cell of a table? For example:
=2+2