在excel电子表格中删除行的方法是否比我目前使用的方法更好?
在电子表格中,我运行一个宏,如果特定单元格中的数字为“0”,则会删除一行。
Public Sub deleteRowsIfZero(colDelete As Integer)
Dim r As Long
Application.ScreenUpdating = False
For r = Cells(Rows.Count, colDelete).End(xlUp).Row To 1 Step -1
If Cells(r, colDelete).Value = "0" Then Rows(r).Delete
Next r
Application.ScreenUpdating = True
End Sub
这样可行,但如果电子表格超过700行,则可能会非常慢。有没有更有效的方法来做到这一点?
提前感谢任何建议。
干杯
诺尔
答案 0 :(得分:3)
我会使用一个连续的范围并一次删除它:
Public Sub deleteRowsIfZero(strSeekValue As String)
Dim lngRowsToDelete() As Long
Dim strRowsToDelete() As String
Dim x As Long, y As Long, n As Long, z As Long
On Error GoTo err_
'get the extent of the workbook range
x = Me.UsedRange.Rows.Count
n = -1
'switch off screen updating and calculation
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
'starting from row 1, look for the strSeekValue in column A, keep going till x is reached
For y = 1 To x
If Me.Range("A" & y).Value = strSeekValue Then 'if we find one, pop the row number into the array
n = n + 1
ReDim Preserve lngRowsToDelete(0 To n)
lngRowsToDelete(n) = y
End If
Next y
'if none were found, don't do the next bit
If n = -1 Then GoTo err_
'create a string of all the rows we found
z = 0
ReDim strRowsToDelete(z)
For y = 0 To n
strRowsToDelete(z) = strRowsToDelete(z) & lngRowsToDelete(y) & ":" & lngRowsToDelete(y) & ","
If Len(strRowsToDelete(z)) > 240 Then 'As A.Webb points out, the 255 limit will be a problem here
strRowsToDelete(z) = Left(strRowsToDelete(z), Len(strRowsToDelete(z)) - 1) 'drop the trailing comma
z = UBound(strRowsToDelete) + 1 'resize the array
ReDim Preserve strRowsToDelete(0 To z)
End If
Next y
For y = z To 0 Step -1
If Right(strRowsToDelete(z), 1) = "," Then strRowsToDelete(z) = Left(strRowsToDelete(z), Len(strRowsToDelete(z)) - 1)
'now delete the rows
Me.Range(strRowsToDelete(y)).EntireRow.Delete
Next y
err_:
'assumes calculation was set to auto
Application.Calculation = xlCalculationAutomatic
If Err Then Debug.Print Err.Description
Application.ScreenUpdating = True
End Sub
'run sub foo
Sub foo()
deleteRowsIfZero "0"
End Sub
答案 1 :(得分:2)
在开始之前关闭屏幕更新和计算,并在结束时恢复这些设置。
请注意,每次删除时都会不必要地重新测试一行,因为删除会将行向上滑动。因此,每次删除小优化时,您都可以减少r
。
进一步的优化是一次读入所有测试值。每次从/向Excel / VBA读/写都有开销。见下面的例子:
Dim r As Long, n As Long
Dim testcells As Variant
n = Cells(Rows.count, rowdelete).End(xlUp).Row
testcells = Range(Cells(n, rowdelete), Cells(1, rowdelete)).Value
For r = n To 1 Step -1
If testcells(r, 1) = 0 Then
Rows(r).Delete
End If
Next r
您也可以尝试一次删除所有内容,看看哪个更快。
Dim r As Long, n As Long
Dim testcells As Variant
Dim del As Range
n = Cells(Rows.Count, rowdelete).End(xlUp).Row
testcells = Range(Cells(n, rowdelete), Cells(1, rowdelete)).Value
For r = n To 1 Step -1
If testcells(r, 1) = 0 Then
If del Is Nothing Then Set del = Rows(r)
Set del = Union(del, Rows(r))
End If
Next r
If Not (del Is Nothing) Then
del.Delete
End If
答案 2 :(得分:0)
如果预期的错误很少,找到匹配的单元格并删除它们应该更快。 D列用于保存要删除的字符。
Sub DeleteRowWithCertainValue()
Dim del_char As String
del_char = "0"
Do
On Error GoTo ErrorHandler
Sheets("Sheet1").Range("D:D").Find(What:=del_char, _
After:=Range("D1"), _
LookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlNext, _
MatchCase:=False).EntireRow.Delete
Loop
ErrorHandler: Exit Sub
End Sub