I have written code to delte blank rows in Column D
I would like this to be amended to include empty rows in the column
Your assistance is most appreciated
I would like this to be amended to include empty rows in the column
Code:
Sub Del_Blanks()
On Error Resume Next
Columns(1).SpecialCells(xlCellTypeBlanks).EntireRow.Delete
On Error GoTo 0
End Sub
Your assistance is most appreciated