Run Acess Macro

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello
I have added a button to my spreadsheet that I would like to Run an Access
Macro.
When I execute my code I get "Method Or Data Member Missing". I have turned
on the MS Access object Reference
This is my code

Private Sub CommandButton1_Click()

Dim appAcc As Access.Application

Set appAcc = New Access.Application
appAcc.Visible = True
appAcc.Open "G:\Mypath\Myfile.mdb"
appAcc.RunMacro "MyMcaro"
appAcc.Quit
Set appAcc = Nothing

End Sub

What am I doing wrong?
Thanks!
 
Back
Top