Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error GoTo Fin
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("F8:H12")) Is Nothing Then
L = Target.Row
If Application.CountIf(Range(Cells(L, "F"), Cells(L, "H")), 1) > 0 And Target <> 1 Then
Cells(L, "I").Select
End If
End If
Fin:
End Sub