Form Calculation

  • Thread starter Thread starter DaveB
  • Start date Start date
D

DaveB

I have a form that has 4 calculated fields on it. I would
like these calculations to go into 4 fields in my table.

How do I tell the calculated fields to send the numbers to
the other fields in my table.

Thanks in advance.

DaveB
(e-mail address removed)
 
First of all it is not a good practice to store calculated
values in a table. You are storing excess data that can
always be calculated either in a report or query. If you
feel it is neccissary then I would have some code in an
event simply put the value of the text field into the
field of the table. Something like me.TableField =
me.txtCalculatedField.
 
Back
Top