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

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.

Forum statistics

Threads
1,215,018
Messages
6,122,703
Members
449,093
Latest member
Mnur

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