I have 3 queries that need to run consecutively. What would be the
best process? A button click or macro?
Thanks ahead
Maureen
>I have 3 queries that need to run consecutively. What would be the
>best process? A button click or macro?
If these are action queries, use VBA code behind a button or
whatever.
Dim db As DAO.Database
Set db = CurrentDb()
db.Execute "query1"
db.Execute "query2"
db.Execute "query3"
Set db = Nothing

Signature
Marsh
MVP [MS Access]
maureen227@cox.net - 28 Jul 2006 08:55 GMT
> >I have 3 queries that need to run consecutively. What would be the
> >best process? A button click or macro?
[quoted text clipped - 14 lines]
> Marsh
> MVP [MS Access]
Marsh
Thank you so much this worked like magic.
Tera-bytes of Gratitude!
Maureen