Seeking VBA method to filter multiple values

auto.pilot

Well-known Member
Joined
Sep 27, 2007
Messages
734
Office Version
  1. 365
Platform
  1. Windows
I have the following bit of code which is part of a larger project. Near the top, I have identified TheClient as a single cell reference. Within the code, a workbook is opened, then filtered by TheClient in column A. Thereafter, the headers and filtered range are copied and then pasted to the destination workbook. This all works as expected.

However, I would like to now change the code so that TheClient is many Clients, up to 300. How can I do this?



Code:
Dim DestBook As Workbook
Dim TheClient As Long
Dim Last_A As Long

Set DestBook = ActiveWorkbook

TheClient = Range("A1").Value  ' <<< instead of one client, I would like to make this many clients (up to 300).

Set SourceBook = Workbooks.Open(Filename:="\\blablabla.SourceBook.xlsx")

Last_A = Range("A" & Rows.Count).End(xlUp).Row

ActiveSheet.Range("A1:IL" & Last_A).AutoFilter Field:=1, Criteria1:=TheClient   ''' <<< same here, I'd like to filter the list for many Clients, not just one 
Range("A1:IL" & Last_A).Copy

DestBook.Activate

Set PasteDest = Range("A6")

PasteDest.Select

Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
    xlNone, SkipBlanks:=False, Transpose:=False

Application.CutCopyMode = False

SourceBook.Close False

Thanks in advance for all help.

j
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Try this macro. Clients in A1, A2, A3, etc. on the active sheet.
Code:
Public Sub AutoFilter_Other_Workbook_Multiple_Values1()

    Dim DestBook As Workbook
    Dim SourceBook As Workbook
    Dim Last_A As Long
    Dim ColAValues As Variant, Clients() As String, i As Long
    
    Set DestBook = ActiveWorkbook
    
    With DestBook.ActiveSheet
        Last_A = .Range("A" & .Rows.Count).End(xlUp).Row
        ColAValues = .Range("A1:A" & Last_A).Value
    End With
    ReDim Clients(1 To UBound(ColAValues))
    For i = 1 To UBound(ColAValues)
        Clients(i) = ColAValues(i, 1)
    Next
    
    Set SourceBook = Workbooks.Open(Filename:="C:\folder\path\SourceBook.xlsx")
    With SourceBook.ActiveSheet
        Last_A = .Range("A" & .Rows.Count).End(xlUp).Row
        .Range("A1:IL" & Last_A).AutoFilter Field:=1, Criteria1:=Clients, Operator:=xlFilterValues
        .Range("A1:IL" & Last_A).Copy
    End With
        
    DestBook.Activate
    DestBook.ActiveSheet.Range("C1").PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
    Application.CutCopyMode = False
    
    SourceBook.Close False

End Sub
 
Last edited:
Upvote 0
It only took minutes for me to try, and it works perfectly. Thanks for your prompt and excellent reply.

j
 
Upvote 0

Forum statistics

Threads
1,214,566
Messages
6,120,266
Members
448,953
Latest member
Dutchie_1

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