Hide Sheets to Left Q

  • Thread starter Thread starter Seanie
  • Start date Start date
try this:
Sub HideLefSheets()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
If ws.Index < ActiveSheet.Index Then ws.Visible =
xlSheetHidden
Next ws
End Sub
 
try this:
Sub HideLefSheets()
    Dim ws As Worksheet
    For Each ws In ThisWorkbook.Worksheets
        If ws.Index < ActiveSheet.Index Then ws.Visible =
xlSheetHidden
    Next ws
End Sub



- Show quoted text -

Perfect, thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top