View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Oldjay
 
Posts: n/a
Default Unhiding worksheets

I have a workbook with several "well" hidden worksheets.
They don't appear in the project explorer or on the toolbar menu
Someone in the group gave the following marco to unhide them

Sub Macro1()
For Each Sheet In Sheets
On Error Resume Next
Sheet.Visible = True
Next
End Sub

It gives the following error
"can't find project or library" and hi-lights the first "sheet"

oldjay