keith05281967
Board Regular
- Joined
- May 6, 2011
- Messages
- 68
All,
The below code selects the active range of a worksheet. It then scrolls to the single cell that represents the bottom rigtht corner of the range. This is almost, but not quite, what I want.
I want to see "on screen" the bottom right corner of the "selected range" not just a single cell.
I know the code is currently doing exactly what I told it to do, but only because I don't know how to tell it what to do.
Range("A1").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Application.Goto ActiveCell.SpecialCells(xlLastCell), Scroll:=True
thanks in advance
Keith
The below code selects the active range of a worksheet. It then scrolls to the single cell that represents the bottom rigtht corner of the range. This is almost, but not quite, what I want.
I want to see "on screen" the bottom right corner of the "selected range" not just a single cell.
I know the code is currently doing exactly what I told it to do, but only because I don't know how to tell it what to do.
Range("A1").Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Application.Goto ActiveCell.SpecialCells(xlLastCell), Scroll:=True
thanks in advance
Keith