Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have some hidden worksheet that i can not unhide. They appear in the Name
Manager and work in formulae but I can't do the unhide the usual way. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When you say "in the usual way" I presume you mean using menu
Format--Sheet--Unhide but the sheet is not found? It may be very hidden ("xlSheetVeryHidden") use VBA to unhide all sheets this way Dim Sheet As Worksheet For Each Sheet In ThisWorkbook.Worksheets Sheet.Visible = xlSheetVisible Next Sheet Hopefully MS won't come up with a Very Very Hidden later or we're in trouble :) "pawlingJohn" wrote: I have some hidden worksheet that i can not unhide. They appear in the Name Manager and work in formulae but I can't do the unhide the usual way. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm completely VB ignorant. When i get this in and compiled what do I do?
"Charlie" wrote: When you say "in the usual way" I presume you mean using menu Format--Sheet--Unhide but the sheet is not found? It may be very hidden ("xlSheetVeryHidden") use VBA to unhide all sheets this way Dim Sheet As Worksheet For Each Sheet In ThisWorkbook.Worksheets Sheet.Visible = xlSheetVisible Next Sheet Hopefully MS won't come up with a Very Very Hidden later or we're in trouble :) "pawlingJohn" wrote: I have some hidden worksheet that i can not unhide. They appear in the Name Manager and work in formulae but I can't do the unhide the usual way. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It depends. Is this a one-time thing that you need to do on a particular
workbook? Or do you need to unhide these sheets every time you open the workbook (because someone else hides them?) Or do you want to click a button to hide/unhide sheets as desired? To unhide sheets automatically when the workbook is opened, put those lines of code in the Workbook_Open subroutine: Private Sub Workbook_Open() ' Dim Sheet As Worksheet ' For Each Sheet In ThisWorkbook.Worksheets Sheet.Visible = xlSheetVisible Next Sheet ' End Sub "PawlingJohn" wrote: I'm completely VB ignorant. When i get this in and compiled what do I do? "Charlie" wrote: When you say "in the usual way" I presume you mean using menu Format--Sheet--Unhide but the sheet is not found? It may be very hidden ("xlSheetVeryHidden") use VBA to unhide all sheets this way Dim Sheet As Worksheet For Each Sheet In ThisWorkbook.Worksheets Sheet.Visible = xlSheetVisible Next Sheet Hopefully MS won't come up with a Very Very Hidden later or we're in trouble :) "pawlingJohn" wrote: I have some hidden worksheet that i can not unhide. They appear in the Name Manager and work in formulae but I can't do the unhide the usual way. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Charlie
"Charlie" wrote: It depends. Is this a one-time thing that you need to do on a particular workbook? Or do you need to unhide these sheets every time you open the workbook (because someone else hides them?) Or do you want to click a button to hide/unhide sheets as desired? To unhide sheets automatically when the workbook is opened, put those lines of code in the Workbook_Open subroutine: Private Sub Workbook_Open() ' Dim Sheet As Worksheet ' For Each Sheet In ThisWorkbook.Worksheets Sheet.Visible = xlSheetVisible Next Sheet ' End Sub "PawlingJohn" wrote: I'm completely VB ignorant. When i get this in and compiled what do I do? "Charlie" wrote: When you say "in the usual way" I presume you mean using menu Format--Sheet--Unhide but the sheet is not found? It may be very hidden ("xlSheetVeryHidden") use VBA to unhide all sheets this way Dim Sheet As Worksheet For Each Sheet In ThisWorkbook.Worksheets Sheet.Visible = xlSheetVisible Next Sheet Hopefully MS won't come up with a Very Very Hidden later or we're in trouble :) "pawlingJohn" wrote: I have some hidden worksheet that i can not unhide. They appear in the Name Manager and work in formulae but I can't do the unhide the usual way. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find and Replace from Hidden Worksheet | Excel Programming | |||
find hidden data in worksheet | Excel Worksheet Functions | |||
find hidden data in worksheet | Excel Worksheet Functions | |||
How do I find how often a number appears within a worksheet | Excel Discussion (Misc queries) | |||
Report Manager or Hidden Setup Sheet? | Excel Programming |