使用高级筛选器时VBA - 1004错误

时间:2017-03-26 21:47:46

标签: excel vba excel-vba excel-2013

运行下面的高级过滤器行时,我一直收到1004错误。

我不确定为什么因为当LRI变量被替换为等于变量值的数字时,脚本运行正常。

我包括了如何设置LRI变量。任何帮助将不胜感激。

 With Sheets("SheetName")
    LRI = .Range("A:A") _
        .Find(What:="*", _
        SearchOrder:=xlByRows, _
        SearchDirection:=xlPrevious).Row
End With

With Sheets("SheetName")
         Range("A30:U62").AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:= _
            .Range("Q1:Q" & LRI), Unique:=False
 End With

0 个答案:

没有答案