A family of Microsoft word processing software products for creating web, email, and print documents.
This perhaps?
[A-Z][A-Za-z]{1,} [A-Z][A-Za-z]{1,}
In a macro:
Sub Test()
With Selection.Find
.ClearFormatting
.Text = "[A-Z][A-Za-z]{1,} [A-Z][A-Za-z]{1,}"
.MatchWildcards = True
.Execute
End With
End Sub