Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I write a code to make a specific cell the top left cell in the
worksheet? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Sub myscroll() ActiveWindow.ScrollRow = 10 ActiveWindow.ScrollColumn = 22 End Sub "Ayo" wrote: How do I write a code to make a specific cell the top left cell in the worksheet? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is a small modification to my last posting
Sub myscroll() ActiveWindow.ScrollRow = Range("D5").row ActiveWindow.ScrollColumn = Range("D5").column End Sub "Ayo" wrote: How do I write a code to make a specific cell the top left cell in the worksheet? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks a lot Joel. I really appreciate it.
"Joel" wrote: Here is a small modification to my last posting Sub myscroll() ActiveWindow.ScrollRow = Range("D5").row ActiveWindow.ScrollColumn = Range("D5").column End Sub "Ayo" wrote: How do I write a code to make a specific cell the top left cell in the worksheet? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
try this
Application.Goto Range("G35"), scroll:=True -- Gary "Ayo" wrote in message ... How do I write a code to make a specific cell the top left cell in the worksheet? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
split post code (zip code) out of cell that includes full address | Excel Discussion (Misc queries) | |||
Shorten code to apply to all sheets except a few, instead of individually naming them, and later adding to code. | Excel Programming | |||
Protect Sheet with code, but then code will not Paste error. How do i get around this. Please read for explainations.... | Excel Programming | |||
Excel code convert to Access code - Concat & eliminate duplicates | Excel Programming | |||
stubborn Excel crash when editing code with code, one solution | Excel Programming |