Speed up code, for each worksheet

Formula11

Active Member
Joined
Mar 1, 2005
Messages
440
Office Version
  1. 365
Platform
  1. Windows
I'm using below code to refer to worksheet using code name (not sure if there's another way).

With a lot of worksheets the code takes a while.

Is there any way to speed up?
Tried "Application.ScreenUpdating = False" but doesn't make a difference.

VBA Code:
Dim my_sheet As Worksheet, my_sheet_in_question As Worksheet
    
    Application.ScreenUpdating = False
    
    For Each my_sheet In ActiveWorkbook.Worksheets
        If my_sheet.CodeName = "MySheetCodeName" Then
            Set my_sheet_in_question = my_sheet
            my_sheet_in_question.Visible = True
            my_sheet_in_question.Select
            Exit For
        End If
    Next my_sheet
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
If you need to unhide just a single sheet you can reference it directly without a loop

VBA Code:
Sub unhiddd()
        MySheetCodeName.Visible = xlSheetVisible
        MySheetCodeName.Select
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,886
Messages
6,127,572
Members
449,385
Latest member
KMGLarson

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