In column A, select the rows you want to process and then run:
Sub delete_empty_rows()
Dim r As Range, j As Long
Set r = ActiveSheet.UsedRange
j = r.Rows.Count + r.Row
Set rdel = Cells(j, "A")
i = Selection.Cells(1, 1).Row
j = Selection.Offset(Selection.Count - 1, 0).Row
For i = 1 To j
If Application.WorksheetFunction.CountA(Rows(i)) = 0 Then
Set rdel = Union(rdel, Cells(i, "A"))
End If
Next
rdel.EntireRow.Delete
End Sub