north2060
I'm assuming that you have already created the appropriate Delete and Append queries you wish to run.
That being the case, you can run them all from code behind a command button...making sure that you run them in the proper order, so as not to leave orphaned records etc.
For example...
Dim stDocName As String
stDocName = "qryOne"
DoCmd.OpenQuery stDocName, acNormal, acEdit
stDocName = "Two"
DoCmd.OpenQuery stDocName, acNormal, acEdit
stDocName = "Three"
You may wish to put a line prior to running the first query to turn off warnings. Otherwise, you will get a warning message for each successive query.
DoCmd.SetWarnings False
After the last query, be sure to turn warnings back one again.
DoCmd.SetWarnings True
Hope that helps.
Tom