Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I want write some code that does the following: Starting point would be in cell a1:- 1. move to cell a100 2. scroll window so that a100 is the top left visible cell Clearly doing point 1 is easy, but how to I get the window to scroll so that a100 is now at the top as opposed to the bottom? Cheers. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Range("A1").select
With Active Window .ScrollColumn=1 .ScrollRow=1 End With HTH Otto "macroapa" wrote in message ... Hi, I want write some code that does the following: Starting point would be in cell a1:- 1. move to cell a100 2. scroll window so that a100 is the top left visible cell Clearly doing point 1 is easy, but how to I get the window to scroll so that a100 is now at the top as opposed to the bottom? Cheers. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use this
Application.Goto Range("A100"), scroll:=True -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "macroapa" wrote in message ... Hi, I want write some code that does the following: Starting point would be in cell a1:- 1. move to cell a100 2. scroll window so that a100 is the top left visible cell Clearly doing point 1 is easy, but how to I get the window to scroll so that a100 is now at the top as opposed to the bottom? Cheers. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel- smooth scrolling (instead of 'snap' scrolling) | Setting up and Configuration of Excel | |||
Vertical scrolling...jumps rather than smooth scrolling | Excel Discussion (Misc queries) | |||
Live Scrolling/Real-Time /Smooth Scrolling doesn't work for me in Excel, even 2007 beta | Excel Discussion (Misc queries) | |||
How do I stop cells / rows from moving, scrolling? | Excel Discussion (Misc queries) | |||
Live Scrolling/Real-Time /Smooth Scrolling doesn't work for me in Excel 2003 | Excel Discussion (Misc queries) |