ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Runtime Error 1004 (https://www.excelbanter.com/excel-programming/387359-runtime-error-1004-a.html)

[email protected]

Runtime Error 1004
 
hi!!

i keep getting this error in vb!!!

worksheetCount = objExcel.Worksheets.Count=== this is my code...

the error i get is Run Time error 1004--- Application Defined Error
or Object Error


Can somebody plz help me out in tis???


Bob Phillips

Runtime Error 1004
 
How is objExcel setup/defined?

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

wrote in message
ups.com...
hi!!

i keep getting this error in vb!!!

worksheetCount = objExcel.Worksheets.Count=== this is my code...

the error i get is Run Time error 1004--- Application Defined Error
or Object Error


Can somebody plz help me out in tis???




[email protected]

Runtime Error 1004
 
On Apr 13, 12:35 pm, wrote:
hi!!

i keep getting this error in vb!!!

worksheetCount = objExcel.Worksheets.Count=== this is my code...

the error i get is Run Time error 1004--- Application Defined Error
or Object Error

Can somebody plz help me out in tis???


this is how i hav defined it!!

Dim objExcel As Object
Set objExcel = CreateObject("Excel.Application")
worksheetCount = objExcel.Worksheets.Count



Norman Jones

Runtime Error 1004
 
Hi Honey,

'---------------
Dim objExcel As Object
Set objExcel = CreateObject("Excel.Application")
worksheetCount = objExcel.Worksheets.Count
'---------------

Your problem resides in the fact that you have not
created or opened a workbook.

Information cannot be returned on the number of
worksheets in a non-existant workbook.


---
Regards,
Norman


wrote in message
oups.com...
On Apr 13, 12:35 pm, wrote:
hi!!

i keep getting this error in vb!!!

worksheetCount = objExcel.Worksheets.Count=== this is my code...

the error i get is Run Time error 1004--- Application Defined Error
or Object Error

Can somebody plz help me out in tis???


this is how i hav defined it!!

Dim objExcel As Object
Set objExcel = CreateObject("Excel.Application")
worksheetCount = objExcel.Worksheets.Count





[email protected]

Runtime Error 1004
 
On Apr 13, 1:51 pm, wrote:
On Apr 13, 12:35 pm, wrote:

hi!!


i keep getting this error in vb!!!


worksheetCount = objExcel.Worksheets.Count=== this is my code...


the error i get is Run Time error 1004--- Application Defined Error
or Object Error


Can somebody plz help me out in tis???


this is how i hav defined it!!

Dim objExcel As Object
Set objExcel = CreateObject("Excel.Application")
worksheetCount = objExcel.Worksheets.Count




hey Hi!!

I have declared an excel path from the vb script!!

excelPath = "C:\ExcelFiles\Dimension XML Generation.xls"

Wen i run the macro from the excel sheet i get this error!!

Request you to kindly let me know if there is another way of defining
it


[email protected]

Runtime Error 1004
 
On Apr 13, 1:51 pm, wrote:
On Apr 13, 12:35 pm, wrote:

hi!!


i keep getting this error in vb!!!


worksheetCount = objExcel.Worksheets.Count=== this is my code...


the error i get is Run Time error 1004--- Application Defined Error
or Object Error


Can somebody plz help me out in tis???


this is how i hav defined it!!

Dim objExcel As Object
Set objExcel = CreateObject("Excel.Application")
worksheetCount = objExcel.Worksheets.Count




Is there any way by which I can set the excel path to the object???


Bob Phillips

Runtime Error 1004
 
It is not the object, but the workbook. Worksheets belongs to a workbook,
but as you haven't opened one, there is no worksheets collection available.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

wrote in message
ups.com...
On Apr 13, 1:51 pm, wrote:
On Apr 13, 12:35 pm, wrote:

hi!!


i keep getting this error in vb!!!


worksheetCount = objExcel.Worksheets.Count=== this is my code...


the error i get is Run Time error 1004--- Application Defined Error
or Object Error


Can somebody plz help me out in tis???


this is how i hav defined it!!

Dim objExcel As Object
Set objExcel = CreateObject("Excel.Application")
worksheetCount = objExcel.Worksheets.Count




Is there any way by which I can set the excel path to the object???





All times are GMT +1. The time now is 10:09 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com