Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim x&
Rows("3:71").Interior.ColorIndex = xlNone
If Not Intersect(Range("E3:E32"), Target) Is Nothing Then
x = Application.Match(Target, Range("E41:E71"), 0) + 40
Target.EntireRow.Interior.Color = vbYellow
Rows(x).Interior.Color = vbYellow
End If
End Sub