Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way for the ActiveCell to be at the top left of a worksheet?
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tom,
Range("A1").Select works for me. -----Original Message----- Is there a way for the ActiveCell to be at the top left of a worksheet? . |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try one of these
Sub CtrlHome() 'ActiveWindow.VisibleRange.Resize(1, 1).Select SendKeys "^{home}" End Sub "Tom Atkisson" wrote in message ... Is there a way for the ActiveCell to be at the top left of a worksheet? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tom,
Try the following: Sub ActiveCellToTopLeft() ActiveWindow.ScrollColumn = ActiveCell.Column ActiveWindow.ScrollRow = ActiveCell.Row End Sub -- Cordially, Chip Pearson Microsoft MVP - Excel www.cpearson.com "Tom Atkisson" wrote in message ... Is there a way for the ActiveCell to be at the top left of a worksheet? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to use ActiveCell to mean a particular cell? | Excel Worksheet Functions | |||
If activecell.column = variable then activecell,offset (0,1) | Excel Discussion (Misc queries) | |||
Align cell contents on left side of sheet? | New Users to Excel | |||
Which cell was the activecell before a keypress | Excel Worksheet Functions | |||
Activecell, not for cell,but for range? | Excel Discussion (Misc queries) |