Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
So far, at the end of a macro I've been sending the cursor across to various
columns and back to position the screen. Itys a bit clumsy, and of course when you work between different sized computer monitors it doesn't work the same. Is there a quick way to position a partcular cell at top left of screen - and perhaps on a separate occasion a particular cell at bottom right? Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
To put a cell at the top left Application.Goto ActiveSheet.Range("B3"), scroll:=True -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Kevryl" wrote: So far, at the end of a macro I've been sending the cursor across to various columns and back to position the screen. Itys a bit clumsy, and of course when you work between different sized computer monitors it doesn't work the same. Is there a quick way to position a partcular cell at top left of screen - and perhaps on a separate occasion a particular cell at bottom right? Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Kevryl
Try the below Sub GoToTopLeft() Dim rngTemp As Range Set rngTemp = Range(Split(ActiveWindow.VisibleRange.Address, ":")(0)) Application.Goto rngTemp, True End Sub Sub GoToBottomRight() Dim rngTemp As Range Set rngTemp = Range(Split(ActiveWindow.VisibleRange.Address, ":")(1)) rngTemp.Offset(-1, -1).Activate End Sub -- Jacob (MVP - Excel) "Kevryl" wrote: So far, at the end of a macro I've been sending the cursor across to various columns and back to position the screen. Itys a bit clumsy, and of course when you work between different sized computer monitors it doesn't work the same. Is there a quick way to position a partcular cell at top left of screen - and perhaps on a separate occasion a particular cell at bottom right? Thanks. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Mike and Jacob!
"Kevryl" wrote: So far, at the end of a macro I've been sending the cursor across to various columns and back to position the screen. Itys a bit clumsy, and of course when you work between different sized computer monitors it doesn't work the same. Is there a quick way to position a partcular cell at top left of screen - and perhaps on a separate occasion a particular cell at bottom right? Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Position of New Excel Spreadsheet on screen | Excel Discussion (Misc queries) | |||
Can I fix the position of an object on the screen? | Excel Discussion (Misc queries) | |||
screen position indication? | Excel Discussion (Misc queries) | |||
Screen position after hyperlinking | Excel Discussion (Misc queries) | |||
Position Picture with macro | Setting up and Configuration of Excel |