Hi guys,
Here's the macro:
=========================================================
Sub Macro1()
Dim i As Long
'Range("A9:J2000").Select
For i = Selection.Rows.Count To 1 Step -1
If WorksheetFunction.CountA(Selection.Rows(i)) = 0 Then
Selection.Rows(i).EntireRow.Delete
End If
Next i
End Sub
=========================================================
..unfortunately cells with no values but only with formulas in them are being treated as non-content-free and are not being removed.
Generally what I'm looking for is a quickest macro to remove all rows that are empty (not even single cell in the row has any value), any help very appreciated.
Bookmarks