In Col A, if A3 = No, the mouse cursor moves to F3, that is fine. In Col A, if A4 = No, the mouse cursor moves to F4 and so forth.
I can't seem to figure out the correct code for or how to write the code correctly.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address(False, False) <> "A3" Then Exit Sub
Application.EnableEvents = False
If Target.Value = "No" Then
Range("F3").Select
End If
Application.EnableEvents = True
End Sub
That's what I got to make it work for one cell so far.
Yes, while your code saysNo.ifin column F?