Autofilter multiple criteria using a variable string

chiidzzz

New Member
Joined
Sep 2, 2012
Messages
32
Code:
Private Sub cmdOK_Click()
Dim lname As String
For i = 0 To lstDV.ListCount - 1
    If lstDV.Selected(i) = True Then
        lname = lname & lstDV.List(i, 0) & ","
    End If
Next
lname = Left(lname, Len(lname) - 1)
LeagueNames = lname
Set fltData = Sheet1.Range(Sheet1.Range("A1"), Sheet1.Range("T2").End(xlDown))
                With fltData
                    .AutoFilter Field:=10, Criteria1:=Array(lname), Operator:=xlAnd
                End With
Me.Hide
End Sub
lname is filled from a listbox, and this code is supposed to autofilter sheet1 column J based on lname values.
If I select only one value for lname, the filter works fine, but if I select more than one, the filter does not work, I get 0 values. Any idea what should I fix?
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.

Forum statistics

Threads
1,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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