View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
John F. Collins John F. Collins is offline
external usenet poster
 
Posts: 4
Default Problem with Find Method



"Edward Ulle" wrote in message
...


I'm using Find and not FindNext so I'm assuming every call to Find
resets to the top of the column and search down until found or not.


Not necesarilly. Where to start from and which directionto look are
parameters to find. Like this:

Find(What:="abcdef", After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False)

As Dave said, set everything yourself.