In a macro I have this search procedure (bottom up and right to left)

Cells.Find(What:=c, After:=ActiveCell, LookIn:=xlValues, LookAt:= _
        xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Activate
Silly, but I don't know the proper code saying "if there are no more occurrences, then...". None of those in the HELP section (Not Found, NoMatch, Is Not) seem to apply.

Thanks for your patience
ACA