Macro for hide - unhide sheets

gestioperformance

New Member
Joined
Mar 29, 2018
Messages
7
Hi everybody!
i need a macro that will hide all the sheets at the closing of the file, and it will unhide those hidden sheets at the opening. In particular, i want to protect all my sheets with a password, and the macro should auto-insert the password (that could even be the same password) at the opening.
The idea is to keep the sheets hidden to avoid unauthorized users to read the file.

Thank you in advance for any kind of help.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
.
Presuming you want only yourself (or someone who knows the password) to have access to the workbook ... rather than protect the worksheets ... protect the entire workbook :

Code:
Option Explicit
Private Sub CommandButton1_Click()
Dim username, password As String
username = TextBox1.Text
password = TextBox2.Text


If username = "myuser" And password = "password" Then
    MsgBox "You entered the correct info ", vbInformation, "Log In Correct"
    Unload Me
Else
    MsgBox "You entered the WRONG info ", vbCritical, "Log In Incorrect"
    Unload Me
    Application.Visible = False
    ThisWorkbook.Close
    Application.Quit
End If
End Sub

Note for this example the USER NAME is myuser and the PASSWORD is password.

This project requires a Userform.

You can download the project here : https://www.amazon.com/clouddrive/share/Xib2AyBMo1oF90LSzssLnclHy9OSgpg2aPQpVdDKpkn
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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