OK, I've managed to resolve my own problem with the following code:
In Module
Sub UnprotectTEMP()
Dim rChk As Range, r1st As Range
Set r1st = Columns("B").Find(What:="TEMP", after:=Cells(Rows.Count, "B"), LookIn:=xlValues, lookat:=xlPart, searchdirection:=xlNext)
If Not r1st Is Nothing Then
Set rChk = r1st
Do
ActiveSheet.Protect Password:="", DrawingObjects:=True, Contents:=True, Scenarios:=True, AllowFormattingRows:=True, AllowInsertingRows:=True, AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True
Set rChk = Columns("B").FindNext(after:=rChk)
Loop While rChk.Address <> r1st.Address 'else, endless loop
End If
Set r1st = Nothing
Set rChk = Nothing
End Sub
In Sheet
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count = 1 Then
If InStr(1, Target.Value, "TEMP") Then
Me.Unprotect Password:=""
Target.EntireRow.Locked = False
Me.Protect Password:="", DrawingObjects:=True, Contents:=True, Scenarios:=True, AllowFormattingRows:=True, AllowInsertingRows:=True, AllowDeletingRows:=True, AllowSorting:=True, AllowFiltering:=True
End If
End If
End Sub
HOWEVER
The above code seems to protect everything (even when it finds blank cells in Column B) and only unprotect rows that have a prefix of "TEMP" in Column B. I really need it modifying so that it "unprotects everything" and only protects those items NOT using the prefix of "TEMP" in Column B. Also...
...I am working from a "Table" where one would press the <TAB> key on last cell to add a new row - the Protection seems to stop allowing me to add a new line!
Can anyone advise please?
Bookmarks