I have the following piece of code which searchs for a specified date
in a worksheet and returns the row number of the date. How would I
alter this code so that only a specified column is searched for the
date in question?
Set rCell = Cells.Find(What:=CDate(strdate), After:=Range("B5"),
LookIn:=xlFormulas, LookAt:=xlWhole, _
SearchOrder:=xlByRows, SearchDirection:=xlNext,
MatchCase:=False)
rCell.Select
RowNo = ActiveCell.Row