G
Guest
I need to do an autofilter for items that are 3 days old. I have tried
several things, but the results are totally bogus...It shows only about 15
records (should be about 200) and there are blank records (which are not in
the worksheet??!!) and dates that are newer (as well as some that are older)
than the target date
Sub threedaysold()
'
' threedaysold Macro
' Macro recorded 8/28/2003 by Bruce
'
'
Cells.Select
Range("G1").Activate
Selection.AutoFilter Field:=9, Criteria1:="=today() - 3",
Operator:=xlAnd
End Sub
several things, but the results are totally bogus...It shows only about 15
records (should be about 200) and there are blank records (which are not in
the worksheet??!!) and dates that are newer (as well as some that are older)
than the target date
Sub threedaysold()
'
' threedaysold Macro
' Macro recorded 8/28/2003 by Bruce
'
'
Cells.Select
Range("G1").Activate
Selection.AutoFilter Field:=9, Criteria1:="=today() - 3",
Operator:=xlAnd
End Sub