View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Link[_2_] Link[_2_] is offline
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?