dparteka
Member
I have this code that works great but I'm looking to tweak it a bit by changing SubRng.EntireRow.Locked = False which unlocks the entire row to having it unlock only the single cell in that row in column F... thanks for looking and I appreciate the help.
Code:
Dim Rng As Range
Dim SubRng As Range
Set Rng = Range("A2:A" & Cells(Rows.Count, "A").End(xlUp).Row)
For Each SubRng In Rng
If SubRng = "?" Then
SubRng.EntireRow.Locked = False
End If
Next SubRng