![]() |
|
#1
|
|||
|
|||
![]()
Hi Folks
I am having trouble using VBA to Autofilter on two date columns using VBA. I have searched and failed miserably :-(. Basically I have two columns, one called "Proximity Date" and one called "Elimination Date". What I want is to Autofilter my list where todays date falls between those two columns. Any held/advice appreciated. Thanks in advance. Tony |
#2
|
|||
|
|||
![]()
I'm not sure if I understand correctly, but try something like this:
Code:
Sub FilterToday() With ActiveSheet.Range("A1").CurrentRegion .AutoFilter Field:=2, Criteria1:=xlFilterToday, Operator:=xlFilterDynamic .AutoFilter Field:=3, Criteria1:=xlFilterToday, Operator:=xlFilterDynamic End With End Sub |
#3
|
|||
|
|||
![]()
Hi Rudi
Not quite what I was after but thanks for the response anyway. I have now managed to resolve my issue. Kind regards Tony |
#4
|
|||
|
|||
![]()
Great to know...
![]() |
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to create statis Baseline date columns | Ross Jackson | Project | 3 | 12-17-2015 04:00 PM |
Trying to autofilter 8-10 rows of numbers to sort in a group | Jack-P-Winner | Excel | 0 | 11-25-2013 10:55 PM |
![]() |
Grasshopper | Excel | 3 | 02-14-2013 01:41 AM |
![]() |
coxjamd | Excel Programming | 2 | 01-17-2013 02:24 PM |
![]() |
Learner7 | Excel | 5 | 06-12-2010 09:54 AM |