条件1:= Array(“ <> David”,“ <> Steven”)....在vb Macro Excel中不起作用

时间:2018-10-22 07:10:55

标签: excel vba excel-vba

请帮助我,当我给出比较不等于过滤器的数组时为什么不起作用。 VB宏excel

1 个答案:

答案 0 :(得分:2)

您可以在自动过滤器中最多指定两个“不相等”条件。

with myFilterRange
    .AutoFilter Field:=1, Criteria1:="<>David", _
                Operator:=xlAnd, Criteria2:="<>Steven"
end with

有关其他“不等于”的条件,请参见Excel VBA autofilter all but three