Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Unhide Multiple Worksheets At Once

How do you unhide mutilple worksheets with one command instead of worksheet
by worksheet?

Val Steed


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 41
Default Unhide Multiple Worksheets At Once

Hi Val Steed,

in Excel, you can hid all but one sheets in a workbook in a single stroke
thru :
on the sheet tab, right click and "select all sheets" and the deselect the
sheets which are not to be hidden with regular click of the mouse on
the/those sheets, and then click on format-sheet-hide and your desired
results are achieved.

click yes below, if it helps

"Val Steed" wrote:

How do you unhide mutilple worksheets with one command instead of worksheet
by worksheet?

Val Steed



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Unhide Multiple Worksheets At Once

Sorry but no. I am looking for a way to unhide a group of worksheets all at
once. What you describes works for hiding but not for unhiding.

I think there is some VBA code that will work but I am not a VBA head.

Val

"YESHWANT" wrote in message
...
Hi Val Steed,

in Excel, you can hid all but one sheets in a workbook in a single stroke
thru :
on the sheet tab, right click and "select all sheets" and the deselect the
sheets which are not to be hidden with regular click of the mouse on
the/those sheets, and then click on format-sheet-hide and your desired
results are achieved.

click yes below, if it helps

"Val Steed" wrote:

How do you unhide mutilple worksheets with one command instead of
worksheet
by worksheet?

Val Steed




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Unhide Multiple Worksheets At Once

All hidden sheets?

Sub unhide_sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Visible = True
Next ws
End Sub

An array of sheets?

Sub unhide_sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets(Array _
("Sheet1", "Sheet2", "Sheet3"))
ws.Visible = True
Next ws
End Sub


Gord Dibben MS Excel MVP

On Mon, 24 Aug 2009 13:32:06 -0600, "Val Steed" wrote:

Sorry but no. I am looking for a way to unhide a group of worksheets all at
once. What you describes works for hiding but not for unhiding.

I think there is some VBA code that will work but I am not a VBA head.

Val

"YESHWANT" wrote in message
...
Hi Val Steed,

in Excel, you can hid all but one sheets in a workbook in a single stroke
thru :
on the sheet tab, right click and "select all sheets" and the deselect the
sheets which are not to be hidden with regular click of the mouse on
the/those sheets, and then click on format-sheet-hide and your desired
results are achieved.

click yes below, if it helps

"Val Steed" wrote:

How do you unhide mutilple worksheets with one command instead of
worksheet
by worksheet?

Val Steed




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Unhide Multiple Worksheets At Once

Yes, all worksheets. in a workbook.

Well done.

Val

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
All hidden sheets?

Sub unhide_sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Visible = True
Next ws
End Sub

An array of sheets?

Sub unhide_sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets(Array _
("Sheet1", "Sheet2", "Sheet3"))
ws.Visible = True
Next ws
End Sub


Gord Dibben MS Excel MVP

On Mon, 24 Aug 2009 13:32:06 -0600, "Val Steed" wrote:

Sorry but no. I am looking for a way to unhide a group of worksheets all
at
once. What you describes works for hiding but not for unhiding.

I think there is some VBA code that will work but I am not a VBA head.

Val

"YESHWANT" wrote in message
...
Hi Val Steed,

in Excel, you can hid all but one sheets in a workbook in a single
stroke
thru :
on the sheet tab, right click and "select all sheets" and the deselect
the
sheets which are not to be hidden with regular click of the mouse on
the/those sheets, and then click on format-sheet-hide and your desired
results are achieved.

click yes below, if it helps

"Val Steed" wrote:

How do you unhide mutilple worksheets with one command instead of
worksheet
by worksheet?

Val Steed







  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Unhide Multiple Worksheets At Once

Good to hear the feedback.

Thanks, Gord

On Mon, 24 Aug 2009 15:21:24 -0600, "Val Steed" wrote:

Yes, all worksheets. in a workbook.

Well done.

Val

"Gord Dibben" <gorddibbATshawDOTca wrote in message
.. .
All hidden sheets?

Sub unhide_sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Visible = True
Next ws
End Sub

An array of sheets?

Sub unhide_sheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets(Array _
("Sheet1", "Sheet2", "Sheet3"))
ws.Visible = True
Next ws
End Sub


Gord Dibben MS Excel MVP

On Mon, 24 Aug 2009 13:32:06 -0600, "Val Steed" wrote:

Sorry but no. I am looking for a way to unhide a group of worksheets all
at
once. What you describes works for hiding but not for unhiding.

I think there is some VBA code that will work but I am not a VBA head.

Val

"YESHWANT" wrote in message
...
Hi Val Steed,

in Excel, you can hid all but one sheets in a workbook in a single
stroke
thru :
on the sheet tab, right click and "select all sheets" and the deselect
the
sheets which are not to be hidden with regular click of the mouse on
the/those sheets, and then click on format-sheet-hide and your desired
results are achieved.

click yes below, if it helps

"Val Steed" wrote:

How do you unhide mutilple worksheets with one command instead of
worksheet
by worksheet?

Val Steed





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Unhide Worksheets Wanna Learn Excel Discussion (Misc queries) 0 November 30th 06 04:38 PM
Unhide Worksheets Randy L Excel Discussion (Misc queries) 0 November 30th 06 03:58 PM
Unhide Worksheets Wanna Learn Excel Discussion (Misc queries) 0 November 30th 06 03:30 PM
unhide several worksheets jggsfl Excel Discussion (Misc queries) 1 July 11th 06 07:45 PM
How do I unhide several worksheets within a workbook? jggsfl Excel Discussion (Misc queries) 1 July 11th 06 07:44 PM


All times are GMT +1. The time now is 08:21 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"