A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Try this version
Sub DeleteRows()
Dim iLastRow As Long
Dim i As Long
iLastRow = Cells(Rows.Count, "A").End(xlUp).Row
Rows(1).EntireRow.Delete
For i = iLastRow To 1 Step -1
If Cells(i, "A").Value = "" Then
Rows(i).Delete
End If
Next i
End Sub
Gord