Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 28
Default Unhide Multiple Sheets At One Time?

Currently I have to unhide each sheet one at a time. Is it possible
to unhide multiple sheets all at one time?

Please advise. Thank you.
  #2   Report Post  
Posted to microsoft.public.excel.misc
CLR CLR is offline
external usenet poster
 
Posts: 1,998
Default Unhide Multiple Sheets At One Time?

You could do it with VBA code, initiated by a pushbutton toggle to
hide/unhide them.

Vaya con Dios,
Chuck, CABGx3



"Sweepea" wrote:

Currently I have to unhide each sheet one at a time. Is it possible
to unhide multiple sheets all at one time?

Please advise. Thank you.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Unhide Multiple Sheets At One Time?

Sub visible_sheets()
Dim sht As Worksheet
Application.ScreenUpdating = False
For Each sht In ActiveWorkbook.Sheets
sht.Visible = xlSheetVisible
Next sht
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP

On Fri, 5 Jan 2007 11:42:00 -0800, CLR wrote:

You could do it with VBA code, initiated by a pushbutton toggle to
hide/unhide them.

Vaya con Dios,
Chuck, CABGx3



"Sweepea" wrote:

Currently I have to unhide each sheet one at a time. Is it possible
to unhide multiple sheets all at one time?

Please advise. Thank you.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 28
Default Unhide Multiple Sheets At One Time?

Thank you so much, Gord. It works!


"Gord Dibben" wrote:

Sub visible_sheets()
Dim sht As Worksheet
Application.ScreenUpdating = False
For Each sht In ActiveWorkbook.Sheets
sht.Visible = xlSheetVisible
Next sht
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP

On Fri, 5 Jan 2007 11:42:00 -0800, CLR wrote:

You could do it with VBA code, initiated by a pushbutton toggle to
hide/unhide them.

Vaya con Dios,
Chuck, CABGx3



"Sweepea" wrote:

Currently I have to unhide each sheet one at a time. Is it possible
to unhide multiple sheets all at one time?

Please advise. Thank you.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Unhide Multiple Sheets At One Time?

Thanks for the feedback.

Gord

On Fri, 5 Jan 2007 12:35:00 -0800, Sweepea
wrote:

Thank you so much, Gord. It works!


"Gord Dibben" wrote:

Sub visible_sheets()
Dim sht As Worksheet
Application.ScreenUpdating = False
For Each sht In ActiveWorkbook.Sheets
sht.Visible = xlSheetVisible
Next sht
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP

On Fri, 5 Jan 2007 11:42:00 -0800, CLR wrote:

You could do it with VBA code, initiated by a pushbutton toggle to
hide/unhide them.

Vaya con Dios,
Chuck, CABGx3



"Sweepea" wrote:

Currently I have to unhide each sheet one at a time. Is it possible
to unhide multiple sheets all at one time?

Please advise. Thank you.






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
Autofilter Lists across Multiple Sheets, Maintain Correct Referenc EDSTAFF Excel Worksheet Functions 0 November 14th 05 03:27 PM
Time sheets Driver Excel Worksheet Functions 5 November 7th 05 11:19 AM
CHANGE SET-UP ON MULTIPLE SHEETS AT 1 TIME DEMONET48 Excel Discussion (Misc queries) 2 January 14th 05 08:37 PM
Excel: Enable UnHiding of multiple sheets at once CyberTaz Excel Discussion (Misc queries) 1 January 13th 05 08:30 PM
Multiple sheets selected twa14 Excel Discussion (Misc queries) 2 December 21st 04 11:15 AM


All times are GMT +1. The time now is 02:52 PM.

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

About Us

"It's about Microsoft Excel"