Yep that's all it should be, try making a test query that opens a select query first. Like "Select * from DateWellPrevious" kind of thing just to see if it is really launching the query.
Run your queries in code instead. I used to always attach this kind of sutff to command buttons on a form.
Private Sub Command0_Click()
DoCmd.SetWarnings False
Docmd.openquery "query name"
Docmd.openquery" the next query name"
End Sub