Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Can't find a hidden worksheet that appears in the name manager

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 703
Default Can't find a hidden worksheet that appears in the name manager

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Can't find a hidden worksheet that appears in the name manager

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 703
Default Can't find a hidden worksheet that appears in the name manager

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Can't find a hidden worksheet that appears in the name manager

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
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
Find and Replace from Hidden Worksheet Dave Peterson Excel Programming 2 January 24th 07 06:10 PM
find hidden data in worksheet catlover1946 Excel Worksheet Functions 19 July 20th 06 03:33 AM
find hidden data in worksheet catlover1946 Excel Worksheet Functions 0 July 7th 06 03:50 AM
How do I find how often a number appears within a worksheet PaulGrowns1 Excel Discussion (Misc queries) 1 September 29th 05 12:13 PM
Report Manager or Hidden Setup Sheet? RC[_6_] Excel Programming 4 February 21st 05 05:09 PM


All times are GMT +1. The time now is 10:57 AM.

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"