Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Macro AdvancedFilter without criteria

Status
Not open for further replies.

opopanax666

Technical User
Feb 21, 2007
1
BE
Hi guys,

I use following code to do a double filtering :

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim MyValue1 As Integer
Dim MyValue2 As Integer

    MyValue1 = Sheets("x3").Range("dj1").Value
    MyValue2 = Sheets("x3").Range("dk1").Value
    
    Range("ct1:cv1100").Select
    
    Range("ct1:cv1100").AdvancedFilter Action:=xlFilterCopy, CriteriaRange:=Range( _
        "cx1:cx2"), CopyToRange:=Range("cz1:cz1100"), Unique:=True
    Range("ct1:cv1100").AdvancedFilter Action:=xlFilterCopy, CriteriaRange:=Range( _
        "cy1:cy2"), CopyToRange:=Range("da1:da1100"), Unique:=True
        
    Range("co1:cr1100").AdvancedFilter Action:=xlFilterCopy, CriteriaRange:=Range( _
        "cz1:cz" & MyValue1), CopyToRange:=Range("dc1:de1100"), Unique:=True
    Range("co1:cr1100").AdvancedFilter Action:=xlFilterCopy, CriteriaRange:=Range( _
        "da1:da" & MyValue2), CopyToRange:=Range("df1:dh1100"), Unique:=True
        
    Range("a1:a1").Select
End Sub

So the output of the first filter is used as a criteria for the second. It all works well, except when one of the first filters doesn't return any values. The second filter then returns all the values from its range instead of none...

I'm a total noob when it comes to VB, but I'm sure someone else has had the same problem.

Thanks for any feedback
 
if MyValue1 <> "" then

Range("co1:cr1100").AdvancedFilter Action:=xlFilterCopy, CriteriaRange:=Range( _
"cz1:cz" & MyValue1), CopyToRange:=Range("dc1:de1100"), Unique:=True

end if

Uncle Mike

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top