Hi
The macro below wont run. When I select a column of data ie: A2:A58 it is
suppose to delete the entire row if a cell in my selection is blank.
All my other macros run OK.
I'm running Excel 2003.
Will be grateful for any help.
Public Sub DeleteRowOnCell()
On Error Resume Next
Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
ActiveSheet.UsedRange
End Sub
Bookmarks