Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
What is the code used to hide a sheet in the workbook? Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just record a macro of that action and you will get the code.
Bob Flanagan Macro Systems 144 Dewberry Drive Hockessin, Delaware, U.S. 19707 Phone: 302-234-9857, cell 302-584-1771 http://www.add-ins.com Productivity add-ins and downloadable books on VB macros for Excel "jk" wrote in message ... Hello, What is the code used to hide a sheet in the workbook? Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you want to be sure the user can't see it, you can use
"xlSheetVeryHidden" adn to show it again use "xlSheetVisible". Here with codename of the sheet intestead of the name of the sheet otherwise exchange Sheet1. with Worksheet("Sheet1"). Sub VeryHideSheet Sheet1.Visible = xlSheetVeryHidden End sub Sub ShowSheet Sheet1.Visible = xlSheetVisible End sub /regards "jk" skrev i meddelandet ... Hello, What is the code used to hide a sheet in the workbook? Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In article ,
says... Hello, What is the code used to hide a sheet in the workbook? Thanks In addition to the suggestions you've already received, you may want to check the discussion at Very Hidden Worksheets http://www.dailydoseofexcel.com/arch...en-worksheets/ -- Regards, Tushar Mehta www.tushar-mehta.com Excel, PowerPoint, and VBA add-ins, tutorials Custom MS Office productivity solutions |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hiding sheet in a workbook | Excel Worksheet Functions | |||
Hiding a sheet | Excel Programming | |||
create a sheet but hiding it | Excel Programming | |||
Hiding a sheet | Excel Programming | |||
help in codeing | Excel Programming |