【发布时间】:2017-11-14 10:48:18
【问题描述】:
有谁知道如何在下面的代码中应用高级过滤器后,我可以在 col E 中应用另一个过滤器来显示过滤数据的唯一值(无需摆脱已经过滤的内容?) - 任何帮助都会很大赞赏
Sub difficultQ()
Dim x
Dim Y
x = "Match"
Y = "Match1"
Range("A1").Value = x
Range("A2").Value = Y
Range("M4").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.AdvancedFilter Action:=xlFilterInPlace, criteriarange:=Range("A1:A2")
' In here I would like to have code that filtered col E
' on unique values, without getting rid of the advanced filter above
End Sub
【问题讨论】: