I am using the following code on excel 2000 all works fine but when I use it on excell 2003 It does not find the value Mydate in the UP direction xlup
any ideas on code change required ?
[/quote]
any ideas on code change required ?
Code:
Mydate = Range("B1").Value
Range("F:F").Select
Selection.Find(What:=Mydate, After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlUp, _
MatchCase:=False).Activate
Range(Rows(ActiveCell.Row + 1), Rows("65536")).Select
[/quote]