Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I'm calling an Excel macro from Access and get an error 440 Method 'Run' of object '_Application' failed I've cut and pasted the offending piece of code into a separate procedu Sub Test() ActiveWorkbook.SaveAs Filename:= _ "C:\Apps\Reward and Recognition\Quarterly reports\" _ & "Quarterly KPIs.xls", FileFormat:=xlNormal, _ Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _ CreateBackup:=False ActiveWorkbook.Close SaveChanges:=False End Sub Help appreciated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How are you calling this from Access ?
NickHK "Snowsride" wrote in message ... Hi I'm calling an Excel macro from Access and get an error 440 Method 'Run' of object '_Application' failed I've cut and pasted the offending piece of code into a separate procedu Sub Test() ActiveWorkbook.SaveAs Filename:= _ "C:\Apps\Reward and Recognition\Quarterly reports\" _ & "Quarterly KPIs.xls", FileFormat:=xlNormal, _ Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _ CreateBackup:=False ActiveWorkbook.Close SaveChanges:=False End Sub Help appreciated. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim objExcel As Excel.Application
Set objExcel = Excel.Application With objExcel ..Visible = True Workbooks.Open("C:\Apps\Reward and Recognition\" _ & "Quarterly reports\Template.xls").Activate ..Run "Test" End With --------------------------- Access opens Template.xls OK and runs other code in the Test macro but it fails when it tries to save Template.xls under another name. "NickHK" wrote: How are you calling this from Access ? NickHK "Snowsride" wrote in message ... Hi I'm calling an Excel macro from Access and get an error 440 Method 'Run' of object '_Application' failed I've cut and pasted the offending piece of code into a separate procedu Sub Test() ActiveWorkbook.SaveAs Filename:= _ "C:\Apps\Reward and Recognition\Quarterly reports\" _ & "Quarterly KPIs.xls", FileFormat:=xlNormal, _ Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _ CreateBackup:=False ActiveWorkbook.Close SaveChanges:=False End Sub Help appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
calling access data from excel | Excel Discussion (Misc queries) | |||
Calling a bit of code from a sheet errors | Excel Discussion (Misc queries) | |||
calling a stored access query from excel vba | Excel Programming | |||
calling an MS Access query from within VBA for Excel | Excel Programming | |||
Calling Access Program from Excel | Excel Programming |