Access '97.
We have daily data being added to a series of tables. Is there any way to build a daily running summary of this data automatically?
tblEvents containing
date time event duration cost
summarised into
tblEventSummary
date event eventcount totalduration totalcost
A summary table will really speed up the queries as events can occur hundreds of times a day and we need to compare and report across months of data.
I can build an append query to the summary table quite easily but am not clear on how to automate the daily append nor how to pass variable parameters (yesterdays date) each day
We have daily data being added to a series of tables. Is there any way to build a daily running summary of this data automatically?
tblEvents containing
date time event duration cost
summarised into
tblEventSummary
date event eventcount totalduration totalcost
A summary table will really speed up the queries as events can occur hundreds of times a day and we need to compare and report across months of data.
I can build an append query to the summary table quite easily but am not clear on how to automate the daily append nor how to pass variable parameters (yesterdays date) each day