Skip to content

Instantly share code, notes, and snippets.

@danwagnerco
Last active August 29, 2015 14:27
Show Gist options
  • Save danwagnerco/fff63b3aff538c22a649 to your computer and use it in GitHub Desktop.
Save danwagnerco/fff63b3aff538c22a649 to your computer and use it in GitHub Desktop.
This For loop deletes rows correctly (but slowly)
Option Explicit
Public Sub DeleteRowsSlowly()
Dim lngIdx As Long
For lngIdx = 100000 To 1 Step -1
If Cells(lngIdx, 1).Value = vbNullString Then
Cells(lngIdx, 1).EntireRow.Delete
End If
Next lngIdx
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment