Autofilter Array

B

brittonsm

I can't find the answer to this can someone help me finish this code -
I need to set the autofilter to the values in the Array - Using XL2007

With Worksheets("Ariba Export")
UpLoadArray = .Range("A2", .Range("A" & Rows.Count).End
(xlUp)).Value
End With

ActiveCell.SpecialCells(xlLastCell).Select
End_Cell = ActiveCell.Row
End_Column = ActiveCell.Column
Range("A1").Select
Range("A1", ActiveCell.Offset(End_Cell - 1, End_Column -
1)).AutoFilter
ActiveSheet.Range("A1", ActiveCell.Offset(End_Cell - 1, End_Column
- 1)).AutoFilter Field:=6, Criteria1:=ArrayUpLoadArray,
Operator:=xlFilterValues
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top