Unhide multiple sheets all at once

G

glenlee

Is there a way to unhide mutiple sheets all at once? Clicking
Format-Sheet-Unhide, only seems to allow you to choose 1 sheet. I
want to unhide many.
 
J

Jim Cone

There is no built-in method to do that.
You will have to use a macro.
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware
(Excel Add-ins / Excel Programming)



"glenlee"
wrote in message
Is there a way to unhide mutiple sheets all at once? Clicking
Format-Sheet-Unhide, only seems to allow you to choose 1 sheet. I
want to unhide many.
 
G

Gord Dibben

This macro will unhide all sheets.

Sub Show_Sheets()
Dim i As Integer
For i = 1 To ActiveWorkbook.Worksheets.Count
ActiveWorkbook.Worksheets(i).Visible = True
Next i
End Sub


Gord Dibben MS Excel MVP
 
G

Guest

No.

You cannot select more than one worksheet. There is no provison like using
the CTRL key to select more than one or selecting all the hidden worksheet at
once.

Challa prabhu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top