OK I'm getting brave now....
I added an extra bit of code
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Count > 1 Or Target.Column <> 9 Then Exit Sub
ActiveSheet.Unprotect
If Target.Text = "No" Then
Target.Offset(0, -7).Resize(1, 7).Locked = False
Else
If Target.Text = "Yes" Then
Target.Offset(0, -7).Resize(1, 7).Locked = True
ActiveSheet.Protect
Const triggerColumn = "I"
If Target.Column <> Range(triggerColumn & 1).Column _
Or Target.Cells.Count > 1 Then
Exit Sub
End If
Target.Offset(1, -8).Activate
End If
End If
End Sub
The code sends to to the start of the next row when the last cell in the previous row has been populated, the only thing is is that it doesnt work like pressing the TAB button as the row is blank with no colour, formatting and dropdown boxes. I can manage without it to be honest but if it is a simple job to can anyone help.
Processchip
Bookmarks