View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jeff Sward Jeff Sward is offline
external usenet poster
 
Posts: 4
Default Alternate to Range.Find

Hi,

I am looking for a better way to search a column.

example of what i am doing;

dim col as string = "C1:C100"
Set fndCell = ActiveSheet.Range(col).Find(11)

the problem is that the above code returns the first cell containing 11
(432110 would be and example)

does anyone know of a 'find' that returns the cell satisfying the exact
search criteria?