Advanced filter criteria

VBA_Newbie123

New Member
Joined
May 20, 2017
Messages
9
Hi,

I am attempting to create a macro that will define the criteria that will filter my data. below is what I have started with but not sure where to go with it

Code:
Sub advanced_filter()'
' advanced_filter Macro
'


'
    Columns("A:A").Select
    Range("A1:A33508").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:= _
        Sheets("Collar").Range("B1:B35"), Unique:=False
End Sub



At the moment the criteria range including header is B1:B35 so I have 34 names to filter by however this list varies between 1 name and up to 100 names. Is there a way to define the criteria by simply going to the last filled cell in the B column?

Thanks in advance,
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.

Forum statistics

Threads
1,226,693
Messages
6,192,471
Members
453,726
Latest member
JoeH57

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