View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default How to make a cell appear in upper left (top left) corner of works

One way:

Option Explicit
Sub testme()
Application.Goto ActiveSheet.Range("a28"), scroll:=True
End Sub



jeff wrote:

Whenever I use the Range("A28").Select command, it selects and makes A28 the
focus, but it puts appears in about the the middle of the worksheet, with
rows visible both above and below it.

How do I select A28, AND move A28 up to the top left corner of the sheet, so
there are only the rows below it visible?

Thanks


--

Dave Peterson