carrol said:
I have three fields with dollar amounts in them. I want to calculate
those three fields and put the number in another field.
Thank you.
Not a good idea, a calculated field in a query is the better choice
MySum: [field1]+ [field2] +[field3]
In a form you will need essentially the same code in the after update events
for each of the three fields.
Me!MySum = [field1]+ [field2] +[field3]
Leave this out of one or create another form where the values can be changed
or work at the table level and you have a *very* hard to find problem.