#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default SHEETS

This may be really simple, but is there a way to hide a
sheet in a workbook that is used for bits of information
the user isn't concerned with but the VBA code is.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 550
Default SHEETS

Jonny,

I assume that Format/Sheet/Hide isn't secure enough for what you want to
do??

Manually, you can select the sheet from the VBA editor and change it's
Visible
property to VeryHidden.

Via code:
worksheets("yoursheetname").visible = xlveryhidden

To make it visible again, change the Visible property manuall as above or
worksheets("yoursheetname").visible = True

The VeryHidden property insures that the sheet won't show up on the
Format/Sheet/UnHide menu.

John

"Jonny" wrote in message
...
This may be really simple, but is there a way to hide a
sheet in a workbook that is used for bits of information
the user isn't concerned with but the VBA code is.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 140
Default SHEETS

Jonny wrote:

This may be really simple, but is there a way to hide a
sheet in a workbook that is used for bits of information
the user isn't concerned with but the VBA code is.


You can hide a sheet using Format/Sheet/Hide (I guess, I use Spanish
Excel). At least this is in Excel 2002.
To find out the VBA code to do this, just record your steps while doing it.

Regards,
--
Beto
Reply: Erase between the dot (inclusive) and the @.
Responder: Borra la frase obvia y el punto previo.

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
copy cell info to other sheets, other sheets dont contain all row. Ja Excel Worksheet Functions 1 November 1st 09 12:53 AM
Multiple Sheets (Need to create 500 individual sheets in one workbook, pulling DATA Amaxwell Excel Worksheet Functions 4 August 17th 06 06:23 AM
How to repeat a code for selected sheets (or a contiguous range of sheets) in a Workbook? Dmitry Excel Worksheet Functions 6 March 29th 06 12:43 PM
In 3 active sheets in wkbk, determine& display the # of sheets that have data wrpalmer Excel Discussion (Misc queries) 1 November 4th 05 02:01 PM
Allocate Files to Sheets and Build a Master Sheet which Summarises All Sheets hanuman Excel Programming 0 September 9th 03 11:23 AM


All times are GMT +1. The time now is 11:36 AM.

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"