D
Daniel M
I have access launching excel and then i want it to run a macro. i have the
macro saved as an add-in and if i load the file normally it opens up and
loads the addin (a menu bar and some macros). but when i load it from access
the addin does not load and i cannot find the macros. how do i get it to
load? I am running the following code...
Dim A As Object
Set A = CreateObject("excel.application")
With A.Application
A.Visible = True
A.workbooks.Open "C:\Documents and Settings\user\Desktop\work\File
Imports\test2.xls"
A.Run testmacro4
A.workbooks.Close
End With
End Sub
macro saved as an add-in and if i load the file normally it opens up and
loads the addin (a menu bar and some macros). but when i load it from access
the addin does not load and i cannot find the macros. how do i get it to
load? I am running the following code...
Dim A As Object
Set A = CreateObject("excel.application")
With A.Application
A.Visible = True
A.workbooks.Open "C:\Documents and Settings\user\Desktop\work\File
Imports\test2.xls"
A.Run testmacro4
A.workbooks.Close
End With
End Sub