Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It's actually better to loop through objects (in your case the object is
cells) with the For Each...Loop instead of For...Loop. Try this code. If your list of sheet names in Col. G is continues without any blanks in between sheet names this code would work a little better. Hope this helps! If so, let me know, click "YES" below. Sub LoopThroughSheets() Dim LastRow As Long Dim MyRange As Range Dim cell As Range With Sheets("Print Tracks") ' find last row in column G LastRow = .Cells(Rows.Count, "G").End(xlUp).Row ' set range to scan with loop Set MyRange = .Range("G5:G" & LastRow) End With ' scan each cell in range of sheet names For Each cell In MyRange Sheets(cell.Value).Calculate Next cell End Sub -- Cheers, Ryan "CM4@FL" wrote: I want to loop through a list of sheets, why won't the following code allow me to activate a sheet? Thanks for your help in advance! Sub LoopThroughSheets() Dim wSheet As Worksheet i = 5 wSheet = Sheets("Print Tracks").Range("G" & i).Value Do While wSheet < "" Sheets(wSheet).Activate Calculate i = i + 1 wSheet = Sheets("Print Tracks").Range("G" & i).Value Loop End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Loop to Filter, Name Sheets. If Blank, Exit Loop | Excel Programming | |||
visual basic - select/activate but don't show sheets | Excel Programming | |||
Activate Sheet Best Practice (Y/N?) when xFer data between sheets? | Excel Programming | |||
Activate all sheets | New Users to Excel | |||
Any difference between Sheets Activate and Select? | Excel Programming |