AutoFilter - Criteria - Array - Range - Not working please assist.

kd360

New Member
Joined
Aug 5, 2014
Messages
3
Hi,
I wold like to use the autofilter to filter data based on the criteria that matches a given range in another sheet.

Following is my code
Sub Macro1()
'
' Macro1 Macro
Dim arr() As Variant

arr = Array(Sheet1.Range("B2"), Sheet1.Range("B3"))
'Using this the code works fine and the filter and array populate

'arr = Array(Sheet1.Range("B2:B18"))
'
When this code is used it does not work and I really dont want to type references for all the cells.
'I've also tried
'Sheet1.Range("B2:B18").Value = Array(Sheet1.Range("B2:B18")) but not working

Sheet4.Select
Range("A3").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
Range("C3").Select
Sheet4.Range("$A$3:$AK$11819").AutoFilter Field:=3, Criteria1:=arr, Operator:=xlFilterValues
Range("C3").Select
End Sub

Tried various options of creating Arrays, Ranges etc. from google but have not worked.
Please Assist!

The Final out put of the code should work as this:
Example Sheet 1 B2:B7 contain the vowels {'a', 'e', 'i', 'o', 'u'} and the sheet on which I want to apply autofilter should match the criteria of the range B2:B7 of Sheet1. I wish to apply the same with a criteria range of 50 items hence require it to work with reference of a range. Advanced filter has worked but i
t has to be done with auto filter.

Thanks
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hi
See if this example is useful:

Code:
Sub Filter2()


Dim sh As Worksheet, Arr()
Sheets("Sheet1").Activate
Arr = Application.Transpose(Range("b2:b5")) ' if it is a column, transpose it!
Set sh = Sheets("Sheet4")
sh.Columns("a:C").AutoFilter
sh.Range("a3:c30").AutoFilter 3, Arr, xlFilterValues


End Sub
 
Upvote 0
Yes that worked! thank you very much for that! Worked perfect! :D Now how do I mark this as solved?!
 
Last edited:
Upvote 0
1) You are welcome!

2) At this forum, I don't think we can formally mark a thread as solved. It would be nice if the title could change to

[SOLVED] AutoFilter - Criteria - Array...

Including the one at the e-mails sent when the thread changes.
 
Upvote 0

Forum statistics

Threads
1,215,045
Messages
6,122,840
Members
449,096
Latest member
Erald

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