Logo 
Search:

MS Office Answers

Ask Question   UnAnswered
Home » Forum » MS Office       RSS Feeds
  Question Asked By: Qadriyah Malik   on Jan 19 In MS Office Category.

  
Question Answered By: Eustatius Bakker   on Jan 19

Open a new workbook. Paste the following code into a VBA module in it:

Public Sub UnhideAllSheets()
'Unhide all worksheets  in the active workbook.
Dim x As Integer
On Error GoTo UASerr
For x = 1 To Worksheets.Count
Sheets(x).Visible = True
Next x
Exit Sub
UASerr:
MsgBox "Error", , "UnhideAllSheets"
End Sub

Open the workbook  with the hidden  sheet. From the Tools menu, select Macro >>
Macros >> UnhideAllSheets >> Run.

Share: 

 

This Question has 3 more answer(s). View Complete Question Thread

 
Didn't find what you were looking for? Find more on How to view hidden worksheets? Or get search suggestion and latest updates.


Tagged: