range("A3", columns("A").SpecialCells(xlCellTypeLastCell)).Delete
This will delete A3 through the last cell in column A, regardless of the spaces in the column.
range("A3", range("A3").End(xlDown)).Delete
This will remove from A3 to the first empty cell after A3 in column A.
source
share