Mar 17, 2006 #1 PJFry Technical User Joined Feb 6, 2005 Messages 93 Location US Is there a way to unhide multiple sheets at once? Thanks PJ
Mar 17, 2006 2 #2 AnotherHiggins Technical User Joined Nov 25, 2003 Messages 6,259 Location US As far as I know, you can only do this with code. I use this often enough that I have it linked to a button on a custom toolbar: Code: Sub UnhideAllSheets() For i = 1 To Worksheets.Count + Charts.Count Sheets(i).Visible = True Next i End Sub [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ181-2886 before posting. Upvote 0 Downvote
As far as I know, you can only do this with code. I use this often enough that I have it linked to a button on a custom toolbar: Code: Sub UnhideAllSheets() For i = 1 To Worksheets.Count + Charts.Count Sheets(i).Visible = True Next i End Sub [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ181-2886 before posting.
Mar 17, 2006 1 Thread starter #3 PJFry Technical User Joined Feb 6, 2005 Messages 93 Location US That worked perfect. Thanks. Upvote 0 Downvote