Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
harpscardiff
 
Posts: n/a
Default Sheet tab Restriction


Hi,

Is there anyway to restrict someone from accessing a tab?

something like - if click on tab, then prompt box = password?


Thanks


--
harpscardiff
------------------------------------------------------------------------
harpscardiff's Profile: http://www.excelforum.com/member.php...o&userid=25960
View this thread: http://www.excelforum.com/showthread...hreadid=507189

  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default Sheet tab Restriction

You could use Worksheet Activate, like so

Private Sub Workbook_SheetDeactivate(ByVal Sh As Object)
Dim pwd
Dim this As Worksheet
Dim wbState As Long
Set this = Sh
If ActiveSheet.Name = "Sheet2" Then
wbState = Windows(ThisWorkbook.Name).WindowState
Windows(ThisWorkbook.Name).WindowState = xlMinimized
pwd = InputBox("supply password")
If pwd < "password" Then
Application.EnableEvents = False
this.Activate
Application.EnableEvents = True
End If
Windows(ThisWorkbook.Name).WindowState = wbState
End If
End Sub


'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"harpscardiff"
wrote in message
news:harpscardiff.22jvry_1138797001.0109@excelforu m-nospam.com...

Hi,

Is there anyway to restrict someone from accessing a tab?

something like - if click on tab, then prompt box = password?


Thanks


--
harpscardiff
------------------------------------------------------------------------
harpscardiff's Profile:

http://www.excelforum.com/member.php...o&userid=25960
View this thread: http://www.excelforum.com/showthread...hreadid=507189



  #3   Report Post  
Posted to microsoft.public.excel.misc
harpscardiff
 
Posts: n/a
Default Sheet tab Restriction


thanks for your reply, i'll give it a go and let you know how I get on.

Thanks.


--
harpscardiff
------------------------------------------------------------------------
harpscardiff's Profile: http://www.excelforum.com/member.php...o&userid=25960
View this thread: http://www.excelforum.com/showthread...hreadid=507189

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
lock tab in sheet 2 until cell in sheet one is completed john tempest Excel Worksheet Functions 7 November 24th 05 08:45 AM
In Excel, how do you make one whole sheet equal to another. ryan Excel Discussion (Misc queries) 2 August 31st 05 07:03 PM
Clicking Cell Link Changes Cell on Another Sheet nshah Excel Discussion (Misc queries) 1 August 31st 05 01:50 AM
Using a relative SHEET reference for source data in a chart James Charts and Charting in Excel 6 August 16th 05 05:07 PM
Does excel recognise names rather than cells? Sue Excel Worksheet Functions 9 May 22nd 05 04:51 AM


All times are GMT +1. The time now is 02:33 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"