I am looking to run macros on different sheets defined by a specific range. In this case, I want to run the macros on the sheet that are defined between my sheets "A>>" and "<<Z". The sheets that are in that range have the same macro.
I tried using the following code but I'm probably missing call the macro on the active sheet and move on to the next sheet
Sub EvaluateAll()
' determine current bounds
Dim StartIndex, EndIndex, LoopIndex As Integer
StartIndex = Sheets("A>>").Index + 1
EndIndex = Sheets("<<Z").Index - 1
For LoopIndex = StartIndex To EndIndex
ActiveSheet.Select
'Call Macro1 in X Sheet'
Next LoopIndex
End Sub