Password Protect Worksheet on Close with VBA (with Images)
Ne bu mu:
When you want others to only view the workbook data and no editing should be permitted then you have to make sure you protect the workbook with password while closing it. So that even if someone tries to edit the data it will ask for the password unless they input the password data will not be editable.
The manual way of doing the same is
Gözden geçirmek – Protect Sheet and then Kaydetmek workbook.
Neden bu mu:
If you make frequent updates in the workbook then Every time when you make changes in the workbook you have to make sure you protect it while closing. Some day if you forget to protect then the data will be editable by others.
The below VBA code will help you to protect the workbook automatically while closing the workbook. That means you don’t have to protect it manually everything when you make changes in the workbook.
Nasıl to password protect with VBA upon Close:
Step 1: Open the workbook that need to be protected and press Alt + F11
Adım 2: Aşağıdaki kodu VBA düzenleyici penceresine kopyalayıp yapıştırın ve çalışma kitabını kaydedin.
Private Sub Workbook_BeforeClose(Cancel As Boolean)
Sheets(“Sheet1″).Protect Password:=”Your Password Here” ‘Replace “Sheet1” with your sheet name and “Your Password Here” with the password of your choice.
ActiveWorkbook.Save
Son Alt
Not: Workbook should be saved in a macro enabled format (.xlm, .xlsm, .xlsb etc.) also make sure you protect the VBA code as well. 🙂
That’s It Now Onward your Data will be Safe Always!!