I want to be able to replicate the CTRL+SHIFT+DOWN keypress, as part of a bigger macro project.
So far, the closest thing I can find is this:
Find the last used cell, before a blank in a Column:
Sub LastCellBeforeBlankInColumn()
Range("A1").End(xldown).Select
End Sub
Instead of just selecting the end cell of that column, I wanna be able to select from A1 TO that cell.
How?!
Thank you in advance!
So far, the closest thing I can find is this:
Find the last used cell, before a blank in a Column:
Sub LastCellBeforeBlankInColumn()
Range("A1").End(xldown).Select
End Sub
Instead of just selecting the end cell of that column, I wanna be able to select from A1 TO that cell.
How?!
Thank you in advance!