Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In my workbook, I have a tab, let's call it "secret". Although I could
protect the sheet from being edited, I really don't want the client even see it. I could either hide the sheet or go to tools/window options/uncheck the sheet tab. But either way, the client still could see it, if they know excel well enough. so is there anyway that I could set up a password that controls who can view the sheet. Thanks in advance |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is your best option, but it is breakable by anyone who knows what they
are doing. However, the average user will not know that the sheet is there or how to access it. Sub HideModeratelyWell() With Sheets("YourSheetName") .Protect Password:="ThisIsBreakable" .Visible = xlVeryHidden End With End Sub Robin Hammond www.enhanceddatasystems.com "NetComm888" wrote in message om... In my workbook, I have a tab, let's call it "secret". Although I could protect the sheet from being edited, I really don't want the client even see it. I could either hide the sheet or go to tools/window options/uncheck the sheet tab. But either way, the client still could see it, if they know excel well enough. so is there anyway that I could set up a password that controls who can view the sheet. Thanks in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I hide sheet tabs so only some are accessible? | Excel Discussion (Misc queries) | |||
Hide / Unhide Sheet Tabs Excel 2007 | Excel Discussion (Misc queries) | |||
How to hide/unhide sheet Tabs in Excel 2007? | Excel Worksheet Functions | |||
How do I change the Excel sheet tab bar to display more sheet tabs | Excel Discussion (Misc queries) | |||
I want to print out the sheet tabs (sheet names) | Excel Worksheet Functions |