In a standard modual copy this code
Public Sub Protect_All()
Application.ScreenUpdating = False
Dim ws As Worksheet
For Each ws In Worksheets
ws.Protect Password:="123"
Next
Application.ScreenUpdating = True
End Sub
Public Sub unProtect_All()
Application.ScreenUpdating = False
Dim ws As Worksheet
For Each ws In Worksheets
ws.Unprotect Password:="123"
Next
Application.ScreenUpdating = True
End Sub
Now for every macro in your workbook if they need to modify something on the worksheets call the unprotect_All procedure at the beginning of every macro and call the Protect_All at the end of every modual like this
sub your macro()
call Unprotect_All
"Your macro here"
call Protect_All
end sub
And of course you will have to change the password accordingly.
Bookmarks