I would like include cursor movement in a macro so that the visible range of the worksheet resets and places the cursor in a specific cell. The macro would start above and left of the freeze-point of frozen panes and then end up down and right of the freeze-point.
When I recorded the manual steps the macro shows:
ActiveCell.SpecialCells(xlLastCell).Select
Range(“J19”).Select
I would rather not use an absolute cell reference like J19. In fact, to get there I used the key combo CTRL+HOME.
Whats the VBA equivalent of CTRL+HOME?