I have a number of tables of data for different depots, all of which need to be used to update a main table of data (containing data from all depots) on a regular basis.
The first time I did this, I did an append query to get the data into the main table from the depot's tables.
However, when any record changes in the depot's data, I want to be able to run something that will make that change in the main table as well. If I do another append query, it just adds all of the depot's records on the end of the main table again.
How would I do this?
Thanks!
The first time I did this, I did an append query to get the data into the main table from the depot's tables.
However, when any record changes in the depot's data, I want to be able to run something that will make that change in the main table as well. If I do another append query, it just adds all of the depot's records on the end of the main table again.
How would I do this?
Thanks!