I just drilled a bit and achieved this solution:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("a1:r65353")) Is Nothing Then
' Change the password "" to your password (include the apostrophes)
Const PW = ""
For Each sht In ActiveWorkbook.Sheets
sht.Protect _
Password:=PW, _
DrawingObjects:=True, Contents:=True, Scenarios:= _
False, AllowFormattingCells:=True, AllowFormattingColumns:=True, _
AllowFormattingRows:=True, AllowInsertingColumns:=True, AllowInsertingRows _
:=True, AllowInsertingHyperlinks:=True, AllowDeletingColumns:=True, _
AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True, _
AllowUsingPivotTables:=True
Next sht
End If
End Sub
so this code will lock my worksheet by selecting any cell in range "a1:r65353". in this way the work book will be lock all the times.
to insert and delete rows i used these codes:
Sub UnlockInsrtLock()
'
' UnlockInsrtLock Macro
' Unlock the worksheet, Insert a row an lock it again.
'
' Keyboard Shortcut: Ctrl+Shift+i
'
Const PW = ""
ActiveSheet.Unprotect
Password = ""
Selection.EntireRow.Insert Shift:=xlDown
ActiveSheet.Unprotect
Password = ""
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:= _
False, AllowFormattingCells:=True, AllowFormattingColumns:=True, _
AllowFormattingRows:=True, AllowInsertingColumns:=True, AllowInsertingRows _
:=True, AllowInsertingHyperlinks:=True, AllowDeletingColumns:=True, _
AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True, _
AllowUsingPivotTables:=True
End Sub
and
Sub UnlockDeleteLock()
'
' UnlockDeleteLock Macro
' Unlock the worksheet, Delet a row an lock it again.
'
' Keyboard Shortcut: Ctrl+Shift+d
'
Const PW = ""
ActiveSheet.Unprotect
Password = ""
Selection.EntireRow.Delete Shift:=xlUp
ActiveSheet.Unprotect
Password = ""
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:= _
False, AllowFormattingCells:=True, AllowFormattingColumns:=True, _
AllowFormattingRows:=True, AllowInsertingColumns:=True, AllowInsertingRows _
:=True, AllowInsertingHyperlinks:=True, AllowDeletingColumns:=True, _
AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True, _
AllowUsingPivotTables:=True
End Sub
these two codes will un-protect the sheet, insert or delete the row and by selecting any other cell the first code will lock the sheet again.
any other idea?
Bookmarks