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...