Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
With Range("A1:I25")
.Interior.ColorIndex = xlColorIndexNone
.Rows(1).Offset(1).Interior.ColorIndex = xlColorIndexNone
If Not Intersect(Range("A1:I25"), Target(1, 1)) Is Nothing Then
If Target.Column > 0 Then
.Rows(Target.Row - 0).Interior.Color = RGB(239, 210, 70)
End If
End If
End With
End Sub