Experimente este pequeno sub:
Sub FindFirstMatch()
Dim i As Long
Dim rw As Long, rt As Long
Dim s1 As String, s2 As String
s1 = "Kus_AttackBomber"
s2 = "Tai_Carrier"
For i = 2 To 10
If Cells(i, "A") = s1 And Cells(i, "B") = s2 Then
MsgBox "first match found on row # " & i & " with Round Time = " & Cells(i, "C").Value
Exit For
End If
Next i
End Sub