View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JMB
 
Posts: n/a
Default Excel should have unhide all worksheets selection or button.

Copy into a module in your personal macro workbook and assign it to a button
you create on your toolbar.

Sub UnhideAll()
Dim WkSht As Worksheet

For Each WkSht In Worksheets
WkSht.Visible = xlSheetVisible
Next WkSht
End Sub


"JMayers97" wrote:



----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...et.f unctions