+ Reply to Thread
Results 1 to 6 of 6

Unhide all sheets except for

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-14-2012
    Location
    Davenport, Iowa
    MS-Off Ver
    Excel 365
    Posts
    206

    Unhide all sheets except for

    Hi I am trying to create a script where it hides all sheets except for the specified ones, however, other people either change the name of the sheet, or add their own. I am having issues where the script uses the sheet index as opposed to the name.

    Sub HideSheets()
    
    Dim sh As Worksheet
    
    Application.ScreenUpdating = False
    
    For Each sh In ActiveWorkbook.Sheets
    If sh <> sheet1.Name or sh <> sheet2.Name Then 
    sh.Visible = xlSheetHidden
    Next
    
    Application.ScreenUpdating = True
    
    End Sub

  2. #2
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Unhide all sheets except for

    Change this
    If sh <> sheet1.Name
    to
    If sh.Name <> "sheet1"
    Good Luck...
    I don't presume to know what I am doing, however, just like you, I too started somewhere...
    One-day, One-problem at a time!!!
    If you feel I have helped, please click on the [★ Add Reputation] to left of post window...
    Also....Add a comment if you like!!!!
    And remember...Mark Thread as Solved...
    Excel Forum Rocks!!!

  3. #3
    Forum Contributor
    Join Date
    12-14-2012
    Location
    Davenport, Iowa
    MS-Off Ver
    Excel 365
    Posts
    206

    Re: Unhide all sheets except for

    Fantastic! Thank you!

  4. #4
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Unhide all sheets except for

    Just went over your code...can't see it working...Rather use this:

    Option Explicit
    Sub HideSheets()
    Dim sh As Worksheet
    Application.ScreenUpdating = False
    For Each sh In Worksheets
        If sh.Name <> "Sheet1" And sh.Name <> "Sheet2" Then
            sh.Visible = False
        End If
    Next
    Application.ScreenUpdating = True
    End Sub

  5. #5
    Forum Contributor
    Join Date
    12-14-2012
    Location
    Davenport, Iowa
    MS-Off Ver
    Excel 365
    Posts
    206

    Re: Unhide all sheets except for

    This only works if the sheet is named "Sheet1", I would prefer if it was .sheet1 - the indexed number, this way if someone changes the sheet name the macro wont brake...

  6. #6
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Unhide all sheets except for

    Option Explicit
    Sub HideSheets()
    Dim sh As Worksheet
    Application.ScreenUpdating = False
    For Each sh In Worksheets
        If sh.Name <> Sheets(1).Name And sh.Name <> Sheets(2).Name Then
            sh.Visible = False
        End If
    Next
    Application.ScreenUpdating = True
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Unhide sheets without losing selected sheets
    By jomili in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-01-2016, 06:13 PM
  2. Hide all sheets (very hidden) except one or Unhide all sheets with password
    By wmdriver in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-21-2015, 07:21 AM
  3. Unhide sheets, sort sheets and data and rehide
    By pprseller in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 11-05-2009, 07:18 PM
  4. Unhide hidden sheets + Scroll all sheets
    By Chris Baluyot in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-21-2008, 06:24 PM
  5. Unhide sheets
    By Irina in forum Excel General
    Replies: 5
    Last Post: 11-27-2006, 06:03 PM
  6. [SOLVED] unhide sheets
    By Brian Thompson via OfficeKB.com in forum Excel General
    Replies: 4
    Last Post: 01-15-2006, 02:20 PM
  7. How to Unhide sheets
    By pwermuth in forum Excel General
    Replies: 4
    Last Post: 07-15-2005, 07:05 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1