如果单元格不包含“@",则删除整行的有效方法 [英] Efficient way to delete entire row if cell doesn't contain '@'

查看:32
本文介绍了如果单元格不包含“@",则删除整行的有效方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在创建一个快速子程序来检查电子邮件的有效性.我想删除E"列中不包含@"的整行联系人数据.我使用了下面的宏,但它运行速度太慢,因为 Excel 在删除后移动了所有行.

I'm creating a fast sub to do a validity check for emails. I want to delete entire rows of contact data that do not contain a '@' in the 'E' Column. I used the below macro, but it operates too slowly because Excel moves all the rows after deleting.

我尝试了另一种类似这样的技术:set rng = union(rng,c.EntireRow),然后删除整个范围,但我无法阻止错误消息.

I've tried another technique like this: set rng = union(rng,c.EntireRow), and afterwards deleting the entire range, but I couldn't prevent error messages.

我还尝试将每一行添加到选择中,然后在选择所有内容后(如 ctrl+select),随后将其删除,但我找不到合适的语法.

I've also experimented with just adding each row to a selection, and after everything was selected (as in ctrl+select), subsequently deleting it, but I could not find the appropriate syntax for that.

有什么想法吗?

Sub Deleteit()
    Application.ScreenUpdating = False

    Dim pos As Integer
    Dim c As Range

    For Each c In Range("E:E")

        pos = InStr(c.Value, "@")
        If pos = 0 Then
            c.EntireRow.Delete
        End If
    Next

    Application.ScreenUpdating = True
End Sub

推荐答案

您不需要循环来执行此操作.自动过滤器效率更高.(类似于 SQL 中的游标 vs. where 子句)

You don't need a loop to do this. An autofilter is much more efficient. (similar to cursor vs. where clause in SQL)

自动过滤所有不包含@"的行,然后像这样删除它们:

Autofilter all rows that don't contain "@" and then delete them like this:

Sub KeepOnlyAtSymbolRows()
    Dim ws As Worksheet
    Dim rng As Range
    Dim lastRow As Long

    Set ws = ActiveWorkbook.Sheets("Sheet1")

    lastRow = ws.Range("E" & ws.Rows.Count).End(xlUp).Row

    Set rng = ws.Range("E1:E" & lastRow)

    ' filter and delete all but header row
    With rng
        .AutoFilter Field:=1, Criteria1:="<>*@*"
        .Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
    End With

    ' turn off the filters
    ws.AutoFilterMode = False
End Sub

注意:

  • .Offset(1,0) 阻止我们删除标题行
  • .SpecialCells(xlCellTypeVisible) 指定应用自动过滤器后剩余的行
  • .EntireRow.Delete 删除除标题行之外的所有可见行
  • .Offset(1,0) prevents us from deleting the title row
  • .SpecialCells(xlCellTypeVisible) specifies the rows that remain after the autofilter has been applied
  • .EntireRow.Delete deletes all visible rows except for the title row

逐步执行代码,您可以看到每一行的作用.在 VBA 编辑器中使用 F8.

Step through the code and you can see what each line does. Use F8 in the VBA Editor.

这篇关于如果单元格不包含“@",则删除整行的有效方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆