M maureen227 Jul 27, 2006 #1 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? Thanks ahead Maureen
M Marshall Barton Jul 27, 2006 #2 I have 3 queries that need to run consecutively. What would be the best process? A button click or macro? Click to expand... 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
I have 3 queries that need to run consecutively. What would be the best process? A button click or macro? Click to expand... 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
M maureen227 Jul 28, 2006 #3 Marshall said: 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 Click to expand... Marsh Thank you so much this worked like magic. Tera-bytes of Gratitude! Maureen
Marshall said: 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 Click to expand... Marsh Thank you so much this worked like magic. Tera-bytes of Gratitude! Maureen