I am trying to search through a sheet, find a value (date) then return
the row nuber of that date. I found this code on the web, but I get an
error. I am using Excel 2000.
Function FindRowNumber(strText) As Integer
FindRowNumber = ActiveSheet.Range("A1:A3000").Find
(strText).Cells.Row
End Function