This macro is too slow because the sheet has 757 rows. We want to incorporate it at the start of another macro. Any suggestions to shorten the time it takes? The col is already selected.
Thanks
Code:
Sub DeleteRowOnCell()
' Select Col/Range then run
On Error Resume Next
Selection.SpecialCells(xlCellTypeBlanks).EntireRow.Delete
ActiveSheet.UsedRange
End Sub