Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I have figured out how to unhide multiple sheets in a workbook - Sub Unhide_All_Sheets() Dim WS As Worksheet For Each WS In ActiveWorkbook.Worksheets WS.Visible = True Next WS End Sub What I am now trying to figure out is a way to make the tabs to appear as the sheets are open, but I am trying to prevent the momentary "jumping" to each sheet.. Is there anything that can be added to this code to prevent that -- Thanks Larry |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
Sub Unhide_All_Sheets() Dim WS As Worksheet Application.ScreenUpdating = False For Each WS In ActiveWorkbook.Worksheets WS.Visible = True Next WS Application.ScreenUpdating = True End Sub If this post helps click Yes --------------- Jacob Skaria "Larry Fitch" wrote: I have figured out how to unhide multiple sheets in a workbook - Sub Unhide_All_Sheets() Dim WS As Worksheet For Each WS In ActiveWorkbook.Worksheets WS.Visible = True Next WS End Sub What I am now trying to figure out is a way to make the tabs to appear as the sheets are open, but I am trying to prevent the momentary "jumping" to each sheet.. Is there anything that can be added to this code to prevent that -- Thanks Larry |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Fantastic..
Worked like a charm !!! Thanks so much !! -- Thanks Larry "Jacob Skaria" wrote: Try Sub Unhide_All_Sheets() Dim WS As Worksheet Application.ScreenUpdating = False For Each WS In ActiveWorkbook.Worksheets WS.Visible = True Next WS Application.ScreenUpdating = True End Sub If this post helps click Yes --------------- Jacob Skaria "Larry Fitch" wrote: I have figured out how to unhide multiple sheets in a workbook - Sub Unhide_All_Sheets() Dim WS As Worksheet For Each WS In ActiveWorkbook.Worksheets WS.Visible = True Next WS End Sub What I am now trying to figure out is a way to make the tabs to appear as the sheets are open, but I am trying to prevent the momentary "jumping" to each sheet.. Is there anything that can be added to this code to prevent that -- Thanks Larry |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Unhiding Sheets | Excel Worksheet Functions | |||
Unhiding multiple sheets at a time | Excel Discussion (Misc queries) | |||
Hiding and unhiding sheets | Excel Discussion (Misc queries) | |||
Unhiding Sheets | Excel Discussion (Misc queries) | |||
Excel: Enable UnHiding of multiple sheets at once | Excel Discussion (Misc queries) |