Sub RemoveBlankRows()
Dim LastRow As Long
Dim R As Long
LastRow = ActiveSheet.UsedRange.Rows.Count - ActiveSheet.UsedRange.Row + 1
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
For R = LastRow To ActiveSheet.UsedRange.Row Step -1
If WorksheetFunction.CountA(ActiveSheet.Rows(R).EntireRow) > 0 Then
ActiveSheet.Rows(R).EntireRow.Delete
End If
Next R
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdaing = True
End Sub
Sub DelBlks()
Columns(1).SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub
Sub RemoveBlankRows()
Dim LastRow As Long
Dim R As Long
LastRow = ActiveSheet.UsedRange.Rows.Count - ActiveSheet.UsedRange.Row + 1
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
For R = LastRow To ActiveSheet.UsedRange.Row Step -1
If WorksheetFunction.CountA(ActiveSheet.Rows(R).EntireRow) = 0 Then
X = WorksheetFunction.CountA(ActiveSheet.Rows(R).EntireRow)
ActiveSheet.Rows(R).EntireRow.Delete
End If
Next R
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub