Run MSAccess Action Query From Excel

  • Thread starter Thread starter Charles
  • Start date Start date
C

Charles

Hi can someone tell how I can run a action query in Access
from Excel VBA.
TIA
Charles
 
Thanks I have sorted it now!

Sub RunActionQuery()
'
Dim db As Database

Set db = DAO.DBEngine.OpenDatabase(DatabasePath2, False)

db.Execute "qryAppendStation"

db.Close

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top