Opening the Autofilter dialog box

G

Guest

I have gotten frustrated with trying to get my code to work autofiltering
date ranges.
The code I am using includes:
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=">=firstdate",
Operator:=xlAnd, Criteria2:="<=seconddate"

The result is that the entire range is hidden.

How can I get the default autofilter dialog to show? I have decided this is
the best solution unless the code I am using can be altered successfully.

Thanks,

Jim
 
G

Guest

is this just illustrative or are firstdate and seconddate actually string
variables containing the date in the correct format. If the latter

Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=">=" & firstdate, _
Operator:=xlAnd, Criteria2:="<=" & seconddate
 
A

aidan.heritage

I think the problem is in the use of variables - you have specified
literal text, so the filter is happening on the TEXT - try something
like

dim StartDate as string, secondDate as string
StartDate=">="& format(whateverdate,whateverformat)
Selection.AutoFilter Field:=1, Criteria1:=StartDate
etc
 
G

Guest

Tom, you always come through. This works perfectly. The first column
contains trade dates, with numerous trades on a particular date. The routine
being developed will copy the selected range (in the date column and in
specific other columns) and paste it all in another workbook which has
formulae and macros for analysis of the data. I had everything else working
fine for a specific date but was informed that a date range was required.
Your suggested correction has helped me get it done.

Thanks,

Jim
 
G

Guest

Thanks, Aidan.

Your suggestion also gives me the needed help. To you and Tom, thank you
very much for the quick responses. By the time I actually post a question, I
have tried everything I can think of and have combed the existing posts to
find one that already has addressed my problem. So I am at the "desperate"
level when I post and quick responses are invaluable.

Thanks again,

Jim
 
A

aidan.heritage

You could do it without filtering if you are copying cells by code, by
checking the date in the cell against the bounds, and only if they
match copying them over - I'd do it with OFFSET and a counter variable
as sometimes on our machines the lastcell doesn't return the last cell
(or just refuses to work at all!) - but as long as you have a working
solution, our job is done!
 

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

Similar Threads

Autofilter in a macro 1
Dydnamic date in an autofilter 2
Problem using Autofilter 1
Autofilter 1
Problem Using Auto Filter 3
AutoFilter Confusion (no records found) 3
Help on AutoFilter 1
AutoFilter Row Count 4

Top