Resolved Question: excel vba FIND string Starting with?

Using FIND in an excel VBA UserForm with xlPart, I want to only find cells Starting with a string. e.g. I want a search of "DON" to find 'DONovan' but not "lonDON". The following code returns both.
Set searchResult = Columns("d").Find(What:=Me.txtSearchText.Value, After:=ActiveCell, LookIn:=xlValues, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False)