I would like to store a calculated value in a table. How is this possible?
tblDiscretionaryDetails stores the following information:
CountyID, EventID, DiscretionaryAmt
I want tblCounties.discretionaryexpenditures to be the stored calculated sum of all the CountyID’s and DiscretionaryAmt’s from tblDiscretionaryDetails.
tblDiscrtionaryDetails could contain a couple countyID’s for each eventID. Which means that over several eventid’s, there will be repeats of countyid’s so I’m looking to group on that county ID and keep a sum stored in the table as it will be used for other calculations. I know how to make a qry that works but how do you store back to the table And will it be continuously updated?
any comments on this is appreciated.
Thanks. Jenn