So...have you thought of putting the queries into a macro? That's the "baby step"--just listing them one after another, then you can just run the macro.
The "Toddler Step" would be to then make a form with a button on it, so that the user clicks a button to a macro that imports the new data, clicks a button to view/edit the data, and clicks another button to run your new macro which creates the GIS tables.
Getting out of your Pull-ups, you could fiddle around with VBA and just write the code:
Docmd.OpenQuery "DeleteQueryName1"
Docmd.OpenQuery "AppendQueryName1"
Docmd.OpenQuery "DeleteQueryName2"
Docmd.OpenQuery "AppendQueryName2"
In order to get rid of the pop-up messages "are you sure you want to add these records", etc., use
Docmd.SetWarnings FALSE
but make sure to set it back to TRUE when you're done.
Same thing in a macro--SetWarnings NO or YES.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244. Basics at