Try something like this:
MySub("V6", "T6")
MySub("V7", "T7")
MySub("V8", "T8")
where MySub is:
Sub MySub(ByVal c1 As String, ByVal c2 as String)
Dim value, Last, i
value = Range(c1)
Last = Cells(Rows.Count, 2).End(xlUp).Row
For i = Last To 1 Step -1
If (Cells(i, 2).Value) = Range(c2) Then
Cells(i, "A").EntireRow.Resize(value, 11).Select
Selection.Interior.ColorIndex = 0
End If
Next i
Selection.Activate
Selection.Interior.ColorIndex = 15
End Sub
The above series of three calls can be replaced with a loop.