Thanks folks,
Thats done it. :)
What is the reasoning of xlVeryHidden?
How does it differ from .Hide?
On Apr 12, 7:01 pm, dimm <d...@discussions.microsoft.com> wrote:
> Hi,
>
[quoted text clipped - 5 lines]
>
> Thanks for any advice.
dimm,
You can use the ActiveSheet.Visible = xlVeryHidden property, or you
can also refer to sheets by name, for example:
Sub HideSheet()
Worksheets("Sheet1").Visible = xlVeryHidden
End Sub
Sub UnHideSheet()
Worksheets("Sheet1").Visible = xlVisible
End Sub
You can then adapt this basic structure to meet your own needs.
Alex
Zack Barresse - 22 Apr 2008 23:24 GMT
xlVeryHidden does not show up in the Hide list, such as when you go to
Unhide a worksheet there is a list populated with all of the hidden sheets.
veryhidden does not show up in that group, but it is visible in the VBIDE.

Signature
Zack Barresse
> What is the reasoning of xlVeryHidden?
> How does it differ from .Hide?
[quoted text clipped - 27 lines]
>
> Alex