Do I understand that you want to put the result of a calculation into the table? Generally, this is considered bad form, unless it is a calculation that cannot be reproduced in the future. An example of this would be a Total value for an invoice. This might be stored, since prices for items will change.
Anyway, that's my first question: do you really need to store the calculation (if that's what you are asking?)
Second Question: You have a sum on your form. Where is the data coming from that is being summed? Is it being entered? If so, how do you know when all items to be summed have been entered? You don't want to write the sum to the table until it is complete.
Kathryn