Первый подход, который пришел в голову.Я уверен, что есть другие способы и, возможно, лучше.
'VBA Loop Not exactly recommended if the file is long
Set wk = ThisWorkbook
With wk.Sheets("SheetName")
lastRow = .Cells(Rows.Count, 1).End(xlUp).Row
For i = 1 to lastRow
aString = .Cells(i, 1).Text
bString = .Cells(i, 2).Text
If aString & bString = "ABC10" Then
MsgBox "Found at Row: " & i
Exit For
End If
Next i
End With