berty2000
Board Regular
- Joined
- Mar 29, 2011
- Messages
- 71
Using excel 2003
Trying to figure out how to search down a list of cells in column B.
Find the last cell with data in then delete the next 10 rows below this selection
so far
Sub Cleanup()
'finds the last active cell in range + 1 cell
ActiveSheet.Range("B500").End(xlUp).Offset(1, 0).Select
ActiveCell.Offset(10).Select
End Sub
kind of lost how to do the last bit ?
Trying to figure out how to search down a list of cells in column B.
Find the last cell with data in then delete the next 10 rows below this selection
so far
Sub Cleanup()
'finds the last active cell in range + 1 cell
ActiveSheet.Range("B500").End(xlUp).Offset(1, 0).Select
ActiveCell.Offset(10).Select
End Sub
kind of lost how to do the last bit ?