AutoFilter Macro Based On 3 Criteria

milwphil

Board Regular
Joined
Aug 1, 2010
Messages
120
Good morning!

I have a macro that allows the user to AutoFilter by Name, Start Date and End Date.

I have it working; however, now I need it to be able to provide everyone in the list in the criteria, but still filter between start and end date.

Here is the code I'm using:
PHP:
Sub Filter()
Dim DateStart As Date
Dim DateEnd As Date
Dim Name As String
DateStart = [H3].Value
DateEnd = [I3].Value
Name = [G3].Value
' Set the filter
Range("A5:IV5").Select
    Selection.AutoFilter
 
    Selection.AutoFilter Field:=2, Criteria1:=Name    
    Selection.AutoFilter Field:=21, Criteria1:= _
        ">=" & DateStart, Operator:=xlAnd, Criteria2:="<=" & DateEnd
    Range("U5").Select
End Sub

In short, I'd like to let the user to be able to select "ALL" in cell G3 (in the worksheet) and if "ALL" defer to only the start and end date.

ANY HELP WOULD BE GREATLY APPRECIATED!

Thanks,
Phil
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.

Forum statistics

Threads
1,215,054
Messages
6,122,901
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top