Code to filter a database displays no rows at all

G

Guest

Good afternoon!

I recorded a macro to filter a database to show records where the entry in
column 1 was between two dates thus:

Sub DateFilterOn()
Range("MainDatabaseStart").AutoFilter Field:=1, _
Criteria1:=">=23/10/2007", Operator:=xlAnd, _
Criteria2:="<=22/11/2007"
End Sub

When I run the code, it filters the database down and displays no rows at
all (which is incorrect, as there are loads of them that meet the criteria).
If I then go into Data Filter Custom manually on the first DB column, the
criteria from the code appear in the dialog box and when I click "OK", the
database is correctly filtered.

Can anyone tell me where I'm going wrong, please? Why won't my code filter
my data correctly without the manual intervention?

Thanks in advance.

pete
 
R

Ron de Bruin

Hi Pete

Use the US date format mm/dd/yyyy instead of the DMY you use now in the code
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top