I need code that will:
Find the first blank row in a set of data (the first blank row is ALWAYS at the bottom end of the data)
Highlight that row and every row below it
Delete
I tried this code:
'Columns("A").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
(I use Column A because that always...