I'm not much of a programmer so someone else will need to help you with this.Code:If WorksheetFunction.IsNumber(WorksheetFunction.Find(7, 12345)) = True Then Exit Sub
Can you tell me Why doesn't this work??
If [IsNumber(Find(7, 12345))] = True Then Exit Sub
If InStr(12345, 7) > 0 = True Then Exit Sub
'Trapping the error that VBA will raise on not finding 7
On Error GoTo ContinueCode
If WorksheetFunction.IsNumber(WorksheetFunction.Find(7, 12345)) = True Then Exit Sub
ContinueCode:
'Resetting the error handling settings
On Error GoTo 0
MsgBox "Try this!"