Thread: Unhiding
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Paul B
 
Posts: n/a
Default Unhiding

Frisco, you will need to use a macro, something like this,

Sub unhide_all_sheets()

Dim ws As Worksheet

For Each ws In Worksheets

ws.Visible = True

Next ws

End Sub
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003


"Frisco, Texas" <Frisco, wrote in message
...
How do I unhide more than one spreadsheet at once?