Considere:
Sub Eric()
Dim i As Long, t As String
For i = ActiveCell.Row To 1 Step -1
If InStr(1, Cells(i, ActiveCell.Column), "SETTLEMENT DATE:") > 0 Then
MsgBox Cells(i, ActiveCell.Column)
Exit Sub
End If
Next i
End Sub