Hello All;
I have the following problem that I need to solve using VBA... I have a sort of solution, but I am sure there are people here with much more knowledge than myself.
So, what I need the Macro to do is, go down to a certain cell from a starting position, and then clear the Rows from one below the last filled cell.
I know how to start this
This gets me to the row below the last filled cell, but I have no idea how to get it to select the Rows, rather than just the cell.
Any help would be appreciated.
I have the following problem that I need to solve using VBA... I have a sort of solution, but I am sure there are people here with much more knowledge than myself.
So, what I need the Macro to do is, go down to a certain cell from a starting position, and then clear the Rows from one below the last filled cell.
I know how to start this
Code:
Range("L7").Select
Selection.End(xlDown).Offset(1, 0).Select
This gets me to the row below the last filled cell, but I have no idea how to get it to select the Rows, rather than just the cell.
Any help would be appreciated.