I’ve gotten so used to using “real” databases, that I find myself frustrated when I have to switch back to Microsoft Access. But, hey, it’s good for a lot of things.
Annoyingly, if you just want to run some SQL back-to-back, or one after another, you have to call it in VBA. So, create a module and do something silly like.
Sub update_results()
DoCmd.SetWarnings False
DoCmd.OpenQuery "q_1-4000"
DoCmd.OpenQuery "q_4001-8000"
DoCmd.OpenQuery "q_the_rest"
DoCmd.SetWarnings True
End Sub
The SetWarnings stuff stops pop ups from annoying you about the fact that you are going to update some data.