Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm calling Excel from Access to run a lengthy report. In order to
ensure I have the correct modules loaded up, I call them explicitly: Set oExcelApp = GetObject(, "Excel.Application") If Err < 0 Then Set oExcelApp = CreateObject("Excel.Application") bStarted = True End If ' make sure that Pricing is open and up to date If oExcelApp.Workbooks.Count = 0 Or Len(oExcelApp.Workbooks("Pricing.xla").name) < 0 Then ret = oExcelApp.Workbooks.Open("O:\HPL\Addins\Pricing.xl a") End If oExcelApp.Visible = True ret = oExcelApp.Run("HPLCreate.xla!BuildHPL",) This is returning the error in the subject, 1004. The app is visible, so I go over, view VBA, and sure enough, the module is absolutely there. Yes, it's public. Does anyone have a clue why this might be happening? Maury |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It looks to me like you're trying to run a macro from a different add in that
the one you loaded. -- HTH, Barb Reinhardt If this post was helpful to you, please click YES below. "Maury Markowitz" wrote: I'm calling Excel from Access to run a lengthy report. In order to ensure I have the correct modules loaded up, I call them explicitly: Set oExcelApp = GetObject(, "Excel.Application") If Err < 0 Then Set oExcelApp = CreateObject("Excel.Application") bStarted = True End If ' make sure that Pricing is open and up to date If oExcelApp.Workbooks.Count = 0 Or Len(oExcelApp.Workbooks("Pricing.xla").name) < 0 Then ret = oExcelApp.Workbooks.Open("O:\HPL\Addins\Pricing.xl a") End If oExcelApp.Visible = True ret = oExcelApp.Run("HPLCreate.xla!BuildHPL",) This is returning the error in the subject, 1004. The app is visible, so I go over, view VBA, and sure enough, the module is absolutely there. Yes, it's public. Does anyone have a clue why this might be happening? Maury |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Run-Time error '1004': No cells were found | Excel Programming | |||
Run time error 1004: "No list was found.." | Excel Programming | |||
Microsoft Visual Basic Run-time error '1004' No cells were found | Excel Programming | |||
Run-time error '1004': No cells were found | Excel Programming | |||
Run-time error '1004': No cells were found | Excel Programming |