I have a text field, Total, that adds up other fields in the same row, e.g.,
Code:
Mon Tue Wed Thu Fri Sat Sun Total
10 8 8 6 8 0 0 40
[\code]
Where the properties of Total are set as
[code]
Name............. Total
Control Source... =[Mon]+[Tue]+....
[\code]
It works fine, but I also have an Append Query that attempts to upload the field, Total, to an equivalent field in a master table. The value being uploaded is (0), which is obviously wrong. If I change the properties of Total to
[code]
Name............. Total
Control Source... Total
[\code]
Then it uploads fine, but I have to total the row by hand. Can someone clue me in as to what the role of "Name" and "Control Source" is and how I can upload by automatically totaled field correctly?
Thanks!
Rich