Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default hide sheet? uncheck sheet tabs? or ???

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 575
Default hide sheet? uncheck sheet tabs? or ???

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
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
Can I hide sheet tabs so only some are accessible? Bchez Excel Discussion (Misc queries) 3 September 26th 09 01:09 AM
Hide / Unhide Sheet Tabs Excel 2007 Phil A. Excel Discussion (Misc queries) 2 October 19th 07 08:25 PM
How to hide/unhide sheet Tabs in Excel 2007? Smibes Excel Worksheet Functions 10 March 28th 07 02:45 AM
How do I change the Excel sheet tab bar to display more sheet tabs Rockie Excel Discussion (Misc queries) 3 August 18th 06 02:29 PM
I want to print out the sheet tabs (sheet names) Sundus Excel Worksheet Functions 3 February 23rd 05 08:34 PM


All times are GMT +1. The time now is 01:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"