Runtime error subscript out of range

SBF12345

Well-known Member
Joined
Jul 26, 2014
Messages
614
Greetings,

I am running a chunk of code that uses a loop.

Code:
Dim A As WorksheetDim B As String


For Each A In Sheets(Array("sheet1", "sheet2"))


    B = A.Name

I am receiving the error in the title on the For Each loop line.

Is the For Each loop structured correctly, or might I just have an error in the names as they appear in the array as compared to the workbooks. The worksheet names are different than they appear in the code above.
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
maybe
Code:
Dim i As Long
Dim A As Worksheet
Dim B As String
Dim arWksNames As Variant


arWksNames = Array("sheet1", "sheet2")


For i = LBound(arWksNames) To UBound(arWksNames)
    Debug.Print i, arWksNames(i), Worksheets(arWksNames(i)).Name
    
    Set A = Worksheets(arWksNames(i))
    With A
        'do something with the worksheet
    End With
    
Next i
Set A = Nothing
 
Last edited:
Upvote 0
An alternative bit of code to try.

Code:
Sub Loop_Sheets()
    Dim ws As Worksheet
    Dim B As String
    
    For Each ws In Worksheets
        B = ws.Name
        If B = "Sheet1" Or B = "Sheet2" Then
            'Run some code
        End If
    Next ws
End Sub

Regards
Caleeco
 
Upvote 0
If you don't have 2 sheets with the tab names 'Sheet1' and 'Sheet2' in the active workbook you'll get the error you describe.
 
Upvote 0
maybe best to explain what is being done.
as there may be a better approach

such as if you want to loop through worksheets,

for each wks in worksheets
debug.print wks.name
next wks
 
Upvote 0
Why are you choosing a structure that uses a long counter as the basis of the loop? is there an advantage to this structure rather than an approach that uses a For Each loop and string as the basis for the loop?
 
Upvote 0
Why are you choosing a structure that uses a long counter as the basis of the loop? is there an advantage to this structure rather than an approach that uses a For Each loop and string as the basis for the loop?

for looping through an array, expect
for i = lbound(...) to ubound(...)
next i

whereas "for each" loop is for objects, like
for each wks in worksheets
for each shp in shapes
for each onecell in range
for each onerow in range.rows
for each onecol in range.columns
for each onearea in range.areas
for each pt in pivottables

the original string idea is unusual

but, best approach depends on what you want to do...

PS
alternative to "for each", not preferred, can be
for i = 1 to worksheets.count
'do something to worksheets(i)
next i
 
Last edited:
Upvote 0
alternative to "for each", not preferred, can be
for i = 1 to worksheets.count
'do something to worksheets(i)
next i
a further thought on that.
some collections are not indexed from 1 to the count, but 0 to count - 1
such as

for i = 1 to recordset.fields.count
debug.print recordset.fields(i - 1).name
next i

another reason to prefer for each for collections
for each fld in recordset.fields
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,603
Members
449,038
Latest member
Arbind kumar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top