Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Cell A1 in Upper Left Corner

When Ctl-Home are depressed, the cursor moves to cell A1, and cell A1 i
moved to the very upper left-most corner of the screen. What cod
would be used to place the cursor to cell A55 and move it to the uppe
left-most corner

--
Message posted from http://www.ExcelForum.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Cell A1 in Upper Left Corner

Sub testit()
Dim rng As Range

Set rng = Range("A55")
With ActiveWindow
.ScrollRow = rng.Row
.ScrollColumn = rng.Column
End With
End Sub

Rob


"pjhageman " wrote in message
...
When Ctl-Home are depressed, the cursor moves to cell A1, and cell A1 is
moved to the very upper left-most corner of the screen. What code
would be used to place the cursor to cell A55 and move it to the upper
left-most corner?


---
Message posted from http://www.ExcelForum.com/



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 493
Default Cell A1 in Upper Left Corner

One way:

Application.Goto _
Reference:=Range("A55"), _
Scroll:= True


In article ,
pjhageman wrote:

When Ctl-Home are depressed, the cursor moves to cell A1, and cell A1 is
moved to the very upper left-most corner of the screen. What code
would be used to place the cursor to cell A55 and move it to the upper
left-most corner?


---
Message posted from http://www.ExcelForum.com/

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default Cell A1 in Upper Left Corner

try

Application.Goto Worksheets("sheet10").Range("a55). Scroll:=True
for the active sheet just use
Application.Goto Range("a55"), Scroll:=True
--
Don Guillett
SalesAid Software

"pjhageman " wrote in message
...
When Ctl-Home are depressed, the cursor moves to cell A1, and cell A1 is
moved to the very upper left-most corner of the screen. What code
would be used to place the cursor to cell A55 and move it to the upper
left-most corner?


---
Message posted from
http://www.ExcelForum.com/



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
what is the little black triangle in the upper left corner of a cell FireBrick New Users to Excel 5 April 3rd 23 04:38 PM
how do I get rid of the green triangle/upper left cell corner vera Excel Discussion (Misc queries) 5 June 19th 08 08:18 PM
Green Triangle in Upper Left Corner of Cell Clueless in Seattle New Users to Excel 2 November 27th 07 04:39 AM
What are the green triangles, in the upper left corner of a cell. Humber Excel Discussion (Misc queries) 3 October 4th 06 02:35 PM
grey dot in left upper corner of cell singnothing Excel Discussion (Misc queries) 1 April 1st 06 10:06 AM


All times are GMT +1. The time now is 08:22 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"