I don't know why this is so hard.
The goal:
Go through Column R, rows 2 thru 46.
If the cell is empty, delete the whole row, then check the next row in Column R
The number of rows is fixed. It'll always be 2 thru 46.
(My research shows lots of code for variable length ranges)
Among other things, I've tried this:
What's missing?
The goal:
Go through Column R, rows 2 thru 46.
If the cell is empty, delete the whole row, then check the next row in Column R
The number of rows is fixed. It'll always be 2 thru 46.
(My research shows lots of code for variable length ranges)
Among other things, I've tried this:
Code:
ActiveSheet.Columns("R").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
What's missing?