Sheet Protect (User Interface only) using VBA
Generally, if you want your vba code to run on a protected sheet, you wrap your code in unprotect/protect statements in every procedure or function. You also have to remember to protect the sheet in case it is unprotected.
Here is the attached file that clearly explains how you can avoid this. The following code in the Workbook_Open procedure/event protects all the sheets from the user but allows the macro code to work on the sheets.
There is no command for protection used anywhere in the workbook other than used in the Workbook_Open procedure as above. The code behind the two buttons on the sheet doesn't protect or unprotect the sheet for the respective codes to run.
Download the attached excel file and see how this works.
Private Sub Workbook_Open() Dim wks As Worksheet For Each wks In ThisWorkbook.Worksheets wks.Protect Password:="abc", UserInterfaceOnly:=True Next wks End Sub
Attachment | Size |
---|---|
SheetProtectionUserInterface.xls | 32 KB |
»
- Vishesh's blog
- Login or register to post comments
- 51093 reads
Recent comments
5 years 36 weeks ago
6 years 22 weeks ago
6 years 34 weeks ago
6 years 37 weeks ago
6 years 38 weeks ago
6 years 43 weeks ago
6 years 52 weeks ago
7 years 2 days ago
7 years 3 days ago
7 years 3 days ago