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

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Try:

Code:
LeagueNames = Split(lname, ",")

then making:

Code:
Criteria1:=LeagueNames
 
Last edited:
Upvote 0
You need to change the Operator
Code:
Operator:=xlFilteronValues
 
Upvote 0
Oops
Post#3 should read
Code:
Operator:=xlFilterValues
 
Upvote 0
Try
Code:
.AutoFilter Field:=10, Criteria1:=lname, Operator:=xlFilterValues
or
Code:
.AutoFilter Field:=10, Criteria1:=application.transpose(lname), Operator:=xlFilterValues
 
Upvote 0
How about
Code:
Private Sub cmdOK_Click()
    Dim lname As String
    Dim LeagueNames As Variant
    Dim FltData As Range
    
    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 = Split(lname, ",")
    Set FltData = Sheet1.Range(Sheet1.Range("A1"), Sheet1.Range("T2").End(xlDown))
    With FltData
        .AutoFilter Field:=10, Criteria1:=LeagueNames, Operator:=xlFilterValues
    End With
    Me.Hide
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,076
Messages
6,128,670
Members
449,463
Latest member
Jojomen56

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