Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default Hiding worksheet


Is there any way you can hide a worksheet in a workbook?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default Hiding worksheet


Hi,

To hide it use

Sheets("Sheet1").Visible = False

or to prevent someone simply unhiding it use

Sheets("Sheet1").Visible = xlVeryHidden

Mike

"Link" wrote:

Is there any way you can hide a worksheet in a workbook?

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default Hiding worksheet


Do you click on the sheet tab?

"Mike H" wrote:

Hi,

To hide it use

Sheets("Sheet1").Visible = False

or to prevent someone simply unhiding it use

Sheets("Sheet1").Visible = xlVeryHidden

Mike

"Link" wrote:

Is there any way you can hide a worksheet in a workbook?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default Hiding worksheet


Hi,

It can go as worksheet code. Right click your sheet tab, view code and paste
this in and run it

Sub HideMe()
Sheets("Sheet1").Visible = xlVeryHidden

End Sub

Mike

"Link" wrote:

Do you click on the sheet tab?

"Mike H" wrote:

Hi,

To hide it use

Sheets("Sheet1").Visible = False

or to prevent someone simply unhiding it use

Sheets("Sheet1").Visible = xlVeryHidden

Mike

"Link" wrote:

Is there any way you can hide a worksheet in a workbook?

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Hiding worksheet


FormatSheetHide if you don't want VBA


Gord Dibben MS Excel MVP

On Tue, 23 Jun 2009 07:34:01 -0700, Link
wrote:

Is there any way you can hide a worksheet in a workbook?




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Hiding worksheet

after using xlVeryHidden, how would I unhide the sheet in my workbook?

"Mike H" wrote:

Hi,

To hide it use

Sheets("Sheet1").Visible = False

or to prevent someone simply unhiding it use

Sheets("Sheet1").Visible = xlVeryHidden

Mike

"Link" wrote:

Is there any way you can hide a worksheet in a workbook?

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Hiding worksheet

Sheets("Sheet1").Visible = True


Gord Dibben MS Excel MVP

On Tue, 28 Jul 2009 08:51:01 -0700, rslaughter5
wrote:

after using xlVeryHidden, how would I unhide the sheet in my workbook?

"Mike H" wrote:

Hi,

To hide it use

Sheets("Sheet1").Visible = False

or to prevent someone simply unhiding it use

Sheets("Sheet1").Visible = xlVeryHidden

Mike

"Link" wrote:

Is there any way you can hide a worksheet in a workbook?


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
hiding the worksheet Narnimar Excel Discussion (Misc queries) 8 July 12th 07 05:30 AM
Hiding a Worksheet Marek Excel Programming 6 March 28th 07 08:42 PM
Hiding a Worksheet Tom Ogilvy Excel Programming 0 March 28th 07 12:01 AM
Hiding a Worksheet Vergel Adriano Excel Programming 0 March 27th 07 11:46 PM
Hiding a Worksheet Tom Ogilvy Excel Programming 0 March 27th 07 11:21 PM


All times are GMT +1. The time now is 08:43 PM.

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

About Us

"It's about Microsoft Excel"