Last active
August 29, 2015 14:27
-
-
Save danwagnerco/fff63b3aff538c22a649 to your computer and use it in GitHub Desktop.
This For loop deletes rows correctly (but slowly)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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