Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am passing sheet names to an array. 4 sheets from one open file and 4
sheets from another open file. I open the second file in the routine using the GetOpenFile stmt. I have named the sheets in VBA. What I am trying to do is pass the Name property of the named sheet to the array as seen below. However, the first set of names are causing a "Run Time 424 Error" when I try to pass them to the array called ExportSheetNameArray. Now I know that the names exist by looking at the project properties of each sheet in both files through the properties and project windows. When I check in the immediate window I only get names for the second set of names (seems consistent withthe error I am getting). But why. Why do the second set pass properly to the second array (ImportSheetNameArray) and not the first set (ExportSheetNameArray)? ?SecExpSht.Name ?UnsecExpSht.Name ?CarExpSht.Name ?RetExpSht.Name ?SecImpSht.Name Secured Import Sheet ?UnsecImpSht.Name Unsecured Import Sheet ?CarImpSht.Name Cars Import Sheet Dim ExportSheetNameArray(0 To 3) Dim ImportSheetNameArray(0 To 3) FName = Application.GetOpenFilename("Excel Files (*.xls), *.xls") Workbooks.Open Filename:=FName 'Pass names of 4 export sheets to array ExportSheetNameArray(0) = SecExpSht.Name ExportSheetNameArray(1) = UnsecExpSht.Name ExportSheetNameArray(2) = CarExpSht.Name ExportSheetNameArray(3) = RetExpSht.Name 'Pass names of 4 import sheets to array ImportSheetNameArray(0) = SecImpSht.Name ImportSheetNameArray(1) = UnsecImpSht.Name ImportSheetNameArray(2) = CarImpSht.Name ImportSheetNameArray(3) = RetImpSht.Name |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
XL2007 and array of sheet names? | Excel Discussion (Misc queries) | |||
Array of all selected sheet names? | Excel Programming | |||
Passing Worksheet Names as Variables | Excel Programming | |||
Load an array with Sheet names | Excel Programming | |||
Sheet Names Array | Excel Programming |