Hi All,
I have this script that deletes the rows of records if Column A does not have any value. (Not checked).
There are columns A - H. Column A is used for me to indicate if I want to keep the row by inputting any value.

While it works, the issue is that it takes a long time to process and 20000 records can easily take more than 10 mins.
Is there more efficient way that anyone knows of?

Sub Delete()
Dim MyRange As Range
Dim X As Long
Dim myLastRow As Long

Application.ScreenUpdating = False
Set MyRange = Intersect(ActiveSheet.UsedRange, Range("A:A"))
myLastRow = MyRange.Row + MyRange.Rows.Count - 1
For X = myLastRow To 7 Step -1
If Cells(X, 1).Value = False Or Cells(X, 1).Value = "" Then
Cells(X, 1).EntireRow.Delete
End If
Next X

Application.ScreenUpdating = True

End Sub
Regards,
Nironto