password

nureen

New Member
Joined
Jul 23, 2007
Messages
11
Hi Guy - wondering if you knew the answer to this one??

I have got made a spreadsheet - which i only want certain users to get access to. I have created a button on another page (entry page) and would idealy like for the button to bring up a text box in which the user can only type the password inorder to enter it?? i dont not want to password protect the entire workbook - just that one sheet - because users need to get infromation from other sheets in that workbook.
Thank you!! x
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
This is relatively easy to do.

You can use the Visible property in VBA to hide the sheet from view:

Code:
Sub HidetheSheet()

Sheets("Sheet2").Visible = xlVeryHidden

End Sub

You can then attach code to your button to unhide the sheet:

Code:
Sub ButtonOne()

SheetPassword = InputBox("Enter the Password")

If SheetPassword = "123ABC" Then Sheets("Sheet2").Visible = True

End Sub

You would just have to remember to hide the sheet again when the user is done viewing/using it.

Hope this helps.

Owen
 
Upvote 0

Forum statistics

Threads
1,214,872
Messages
6,122,025
Members
449,060
Latest member
LinusJE

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top