I'm using Access 2007, and I want to calculate the sum of a field in one table and store that sum in another field in another table. I don't expect the original field to change much so I don't want to use a query just to calculate the sum and display it, I want to actually store it and display it whenever I want. Something similar to what you would do in Excel, except with sums from different tables. And if the original field does change, I want the sum to also update and the field in the other table to update as well.
So, to simplify, here is the above broken down:
I have Table1 and Table2 and Field1 and Field2.
Table1 --> Field1
Table2 --> Field2
I want the Field2 = Sum of Field1. I've read everywhere it's better to just calculate the number rather than store it in a table, but I don't need the number to be recalculated since it will most likely never change.
So, to simplify, here is the above broken down:
I have Table1 and Table2 and Field1 and Field2.
Table1 --> Field1
Table2 --> Field2
I want the Field2 = Sum of Field1. I've read everywhere it's better to just calculate the number rather than store it in a table, but I don't need the number to be recalculated since it will most likely never change.