使用Excel VBA Autofilter时如何删除空白行

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/7745598/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-11 14:15:00  来源:igfitidea点击:

How to remove blank rows when using Excel VBA Autofilter

excelvbaautofilter

提问by JoshPeltier

I have written a macro that searches through workbook and applies an autofilter to any listobjects which have a column named "Code". However, when I apply the filter, it does not filter out the blank rows. Any idea on how I can filter these out?

我编写了一个宏,它搜索工作簿并将自动过滤器应用于具有名为“代码”的列的任何列表对象。但是,当我应用过滤器时,它不会过滤掉空白行。关于如何过滤掉这些的任何想法?

Here is the code which applies the filter:

这是应用过滤器的代码:

Public Sub ApplyFilter(filter As Variant)
Dim wb As Workbook
Dim ws As Worksheet
Dim lo As ListObject

Set  wb = ActiveWorkbook

' Loop through each sheet in the workbook
For Each ws In wb.Sheets
    ' Find any listobjects within the sheet
    For Each lo In ws.ListObjects
        Dim r As Integer
        ' Find the column named Code and filter on this column
        r = lo.Range.Rows(1).Find("Code").Column
        ' Clear any existing filter
        lo.Range.AutoFilter Field:=r
        ' If the filter code is not "All Categories", 999, apply the filter
        If filter(0) <> 999 Then
            lo.Range.AutoFilter Field:=r, Criteria1:=filter, Operator:=xlFilterValues
        End If
    Next
Next

End Sub

The filter that is passed in is an array which may just have one criteria, or many. I have also tried adding criteria2:="", but that did not change anything.

传入的过滤器是一个数组,它可能只有一个或多个条件。我也尝试添加标准 2:="",但这并没有改变任何东西。

Let me know if you have any ideas. Thanks!

如果您有任何想法,请告诉我。谢谢!

Here is the other related code:

这是其他相关代码:

Public Sub FilterInvoice(filter As Range)
    Me.ApplyFilter Me.BuildFilter(filter)
End Sub

Public Function BuildFilter(filter As Range) As Variant
    Dim r As Range
    Dim arFilter() As String

    ' Get the cell of the current category
    Set r = Range("Categories").Find(filter.Value)

    ' Set the initial filter value to the category id
    ReDim Preserve arFilter(1)
    arFilter(0) = r.Offset(0, -1).Value

    ' Find any child categories, add child id's to filter array
    For c = 1 To Application.CountIf(Range("Categories").Columns(3), arFilter(0))
        Dim PrevChild As Range
        ' Expand the filter array
        ReDim Preserve arFilter(c + 1)
        If c = 1 Then
            Set PrevChild = Range("Categories").Columns(3).Find(arFilter(0))
        Else
            ' If it is not the first time through the loop, look for the next child after PrevChild
            Set PrevChild = Range("Categories").Columns(3).Find(arFilter(0), PrevChild)
        End If
        ' Offset the found child to get its code, add it to the filter array
        arFilter(c) = PrevChild.Offset(, -2)
    Next

    ' Add "<>" and "<900" to the criteria list to hide blank rows
    'ReDim Preserve arFilter(UBound(arFilter) + 2)
    'arFilter(UBound(arFilter) - 1) = "<>"
    'arFilter(UBound(arFilter)) = "<900"

    'Return the filter array
    BuildFilter = arFilter
End Function

采纳答案by Reafidy

If you are filtering by multiple criteria using an array then by not including "=" the autofilter should filter the blanks. For example this will NOT filter blanks:

如果您使用数组按多个条件进行过滤,则通过不包含“=”,自动过滤器应过滤空白。例如,这不会过滤空白:

Criteria1:=Array("test", "2", "3", "4", "=")

Failing that you may need to hide them manually using specialcells(xlcelltypeblanks).

如果失败,您可能需要使用 specialcells(xlcelltypeblanks) 手动隐藏它们。

EDIT:

编辑:

Okay I think I might have confused you there with my first solution. I have removed it.

好吧,我想我的第一个解决方案可能会让您感到困惑。我已经删除了它。

Now that I can see your code I think what might be happening is that as you are looping through the range and adding your criteria you are probably adding a blank cell. Step through the loop one at a time and make sure this is not the case. You could add this to display the filter and make sure it does not contain blanks:

现在我可以看到您的代码,我认为可能会发生的情况是,当您遍历范围并添加条件时,您可能会添加一个空白单元格。一次一个循环,确保不是这种情况。您可以添加它以显示过滤器并确保它不包含空格:

Debug.Print Join(arfilter, ",")

Debug.Print Join(arfilter, ",")

回答by fro zen

I know this is an old question but I coudln't find any satisfying answer anywhere on the Internet

我知道这是一个老问题,但我无法在互联网上的任何地方找到任何令人满意的答案

So I'd like to share a solution which seems to work pretty well:

所以我想分享一个似乎效果很好的解决方案:

ActiveSheet.Range("$A:$V00").AutoFilter Field:=ActiveSheet.Range("$A:$V").Find("Monitoring").Column, _
Criteria1:="<>Done", Operator:=xlFilterValues

blank cells are still present so we need no filter them out

空白单元格仍然存在,所以我们不需要过滤掉它们

ActiveSheet.Range("$A:$V").Find("Monitoring").EntireColumn.SpecialCells(xlCellTypeBlanks).EntireRow.Hidden = True

Of course because it uses xlFilterValues you can use an Array filter as well

当然因为它使用 xlFilterValues 你也可以使用数组过滤器

ActiveSheet.Range("$A:$V00").AutoFilter Field:=ActiveSheet.Range("$A:$V").Find("Monitoring").Column, _
Criteria1:=Array( _
     "Department1", "Department2", "Department3", "Department4", _
    "Department5", "Department6", "="), Operator:=xlFilterValues

Hope you enjoy!

希望你喜欢!