Thread: Run Acess Macro
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
K Dales[_2_] K Dales[_2_] is offline
external usenet poster
 
Posts: 1,163
Default Run Acess Macro

I think you need to do this:
appAcc.DoCmd.RunMacro "MyMacro"
--
- K Dales


"Sandy" wrote:

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!