Is there a more efficient way to delete blank rows than this following code? The reason I ask is, this requires you to have data in column A but I have lots of scenarios where column A may not have anything, but the rest, or other collums in its corresponding row, do. I only really want something to delete completely blank rows.
Any ideas?
Range("A:A").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
Bookmarks