Sub ColorIt()
Dim LstRw As Long
Dim arr As Variant, rPw As Long
Dim rw As Long, cL As Long
LstRw = Sheet1.Cells(Rows.Count, "B").End(xlUp).Row
arr = Sheet1.Range("A1:B" & LstRw)
rPw = 2
For rw = 2 To UBound(arr)
If arr(rw, 2) = "TRD" Then
For cL = 1 To UBound(arr, 2)
Cells(rw, 1).Interior.Color = vbYellow
Next
rPw = rPw + 1
End If
Next
End Sub