I’m preceding a Selection.Find with On Error GoTo NotFound
Is this going to GoTo NotFound on ANY and ALL ERRORS?
Is there a way to say if the Selection is not Found go to NotFound?
![]()
On Error GoTo NotFound Columns("EH:EH").Select Selection.Find(What:=NewEntry, After:=ActiveCell, LookIn:=xlFormulas, LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False).Select
Bookmarks