Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, [BA8:BA370]) Is Nothing And Target.Count = 1 Then
If Left(UCase(Target), 1) = "T" Then
Target.Offset(0, CInt(Right(Target, 2)) - 51).Interior.ColorIndex = 6
End If
End If
If Not Intersect(Target, [BB8:BB370]) Is Nothing And Target.Count = 1 Then
If Left(UCase(Target), 1) = "T" Then
Target.Offset(0, CInt(Right(Target, 2)) - 52).Interior.ColorIndex = 4
End If
End If
If Not Intersect(Target, [BC8:BC370]) Is Nothing And Target.Count = 1 Then
If Left(UCase(Target), 1) = "T" Then
Target.Offset(0, CInt(Right(Target, 2)) - 53).Interior.ColorIndex = 6
End If
End If
If Not Intersect(Target, [BD8:BD370]) Is Nothing And Target.Count = 1 Then
If Left(UCase(Target), 1) = "T" Then
Target.Offset(0, CInt(Right(Target, 2)) - 54).Interior.ColorIndex = 4
End If
End If
End Sub