Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("F3:P3")) Is Nothing And Target.Count = 1 Then
Target = Target + 1
[A1].Select
End If
If Not Intersect(Target, Range("S3")) Is Nothing And Target.Count = 1 Then
Range("F3:P3") = 0
[A1].Select
End If
If Not Intersect(Target, Range("B3:B32")) Is Nothing And Target.Count = 1 Then
Target = Target + 1
[A1].Select
End If
End Sub