Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Guys,
I was wondering if it is possible to hide a worksheet from user view. and let the worksheet work behind the scene |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Kuansberg,
Try: Format | Sheet | Hide The user will be able to unhide the sheet by using the same menu path. To hide the sheet more securely would require the use of VBA, e,g: '============= Public Sub Tester001() Dim sh As Worksheet Set sh = ActiveWorkbook.Sheets("Sheet2") sh.Visible = xlSheetVeryHidden End Sub '<<============= If you are not familiar with macros, you may wish to visit David McRitchie's 'Getting Started With Macros And User Defined Functions' at: http://www.mvps.org/dmcritchie/excel/getstarted.htm --- Regards, Norman "kuansheng" wrote in message oups.com... Hi Guys, I was wondering if it is possible to hide a worksheet from user view. and let the worksheet work behind the scene |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks a million Norman.
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
One worksheet to calulate different items simultaneously | Excel Worksheet Functions | |||
Extracting data from one Worsheet to Another Worksheet with common link value | Excel Discussion (Misc queries) | |||
is there a way to hide a whole worksheet in excel? | Excel Discussion (Misc queries) | |||
Worksheet Revision Date only once that day | Excel Discussion (Misc queries) | |||
Macro to search for and display data in another worksheet | Excel Worksheet Functions |