Calculations in a form

S

SCP

I have a form made up with fields from a table to input figures- I then added
calculations into my form to "add up those figures" which work fine in the
form itself but when I go back to the table - it does not include any
figures in the fields which have a calculation(in the form) - What am I doing
wrong?
-- Thankyou in anticipation
SCP
 
R

Rick Brandt

SCP said:
I have a form made up with fields from a table to input figures- I
then added calculations into my form to "add up those figures" which
work fine in the form itself but when I go back to the table - it
does not include any figures in the fields which have a
calculation(in the form) - What am I doing wrong?
-- Thankyou in anticipation
SCP

Controls either contain an expression OR save values to the table. They
cannot do both.

The good news is you shouldn't be saving calculated values anyway. You have
a perfectly valid expression that gives the value you want. Just use that
expression wherever you need that value.
 
Top