Excel:如果 COLUMN 等于 VALUE,则删除多行

发布于 2024-11-15 05:01:05 字数 354 浏览 2 评论 0原文

是否有人知道或可以编写一个宏来检查文档的所有行并删除至少具有以下条件之一的所有行:

  • Column F = 0
  • Column N = 0
  • AT 列 = FALSE
  • AU 列 = FALSE
  • AV 列 = 已售出
  • Z 列< /strong> = 上演

谢谢。

Is there a macro somebody knows of or could write that would check all the rows of a document and remove all rows that have at least one of these conditions:

  • Column F = 0
  • Column N = 0
  • Column AT = FALSE
  • Column AU = FALSE
  • Column AV = Sold
  • Column Z = staged

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

羞稚 2024-11-22 05:01:05
Sub RemoveRows()
    Application.ScreenUpdating = False
    Dim r As Long
    For r = ActiveSheet.UsedRange.Row + ActiveSheet.UsedRange.Rows.Count - 1 To ActiveSheet.UsedRange.Row Step -1
        If Cells(r, 6) = 0 Or Cells(r, 14) = 0 _
            Or Cells(r, 46) = False Or Cells(r, 47) = False _
                Or Cells(r, 48) = "Sold" Or Cells(r, 26) = "staged" _
                    Then Cells(r, 1).EntireRow.Delete
    Next r
End Sub
Sub RemoveRows()
    Application.ScreenUpdating = False
    Dim r As Long
    For r = ActiveSheet.UsedRange.Row + ActiveSheet.UsedRange.Rows.Count - 1 To ActiveSheet.UsedRange.Row Step -1
        If Cells(r, 6) = 0 Or Cells(r, 14) = 0 _
            Or Cells(r, 46) = False Or Cells(r, 47) = False _
                Or Cells(r, 48) = "Sold" Or Cells(r, 26) = "staged" _
                    Then Cells(r, 1).EntireRow.Delete
    Next r
End Sub
眼眸里的那抹悲凉 2024-11-22 05:01:05

您可以使用表格来完成此操作(并且实际上并不需要宏)。选择所有数据,转到插入菜单,然后单击表格(位于左侧)。使用列顶部的下拉菜单选择数据过滤器。

You could do it with a table (and not really need the macro). Select all of your data, go to the insert menu, and click table (on the left hand side). Use the dropdowns at the top of the columns to select your data filters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文