Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to read the name of the sheets of WorkBook B, from
WorkBook's A VBE. This is the code <snip Dim oExcel As New Excel.Application Dim oWorkBook As Workbook Dim oWorkSheet As Worksheet Sub OpenWorkBook(sFileName As String) Set oWorkBook = oExcel.Workbooks.Open(Filename:=sFileName) End Sub Sub RetrieveWorkSheets() Dim sName As String For Each oWorkSheet In oWorkBook.Worksheets sName = oWorkSheet.Name Next oWorkSheet End Sub <snip However the name of the sheets in the WorkSheets collection is of the Active Workbook and not the WorkBook I have opened in the OpenWorkBook procedure. Is there anyway to retrieve the sheet names from another workbook? Cheers Aidy |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Retrieving stored names of drop down lists | New Users to Excel | |||
View All Sheet Names in Workbook at Once | Excel Discussion (Misc queries) | |||
Insert Incremental sheet names in a workbook | Excel Worksheet Functions | |||
How do I display list of tab names used in a workbook on a sheet | Excel Worksheet Functions | |||
retrieving table names from Excel and Access sources using ADO | Excel Programming |