Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How do I get excel to open with cursor in same cell as when close

Up until a couple of weeks ago, when I closed and reopened an excel
spreadsheet, it would reopen in the cell where the cursor was left. Now all
of a sudden it jumps to one particular cell every time I reopen the
spreadsheet.. This is a spreadsheet that I use to input daily numbers, so I
am having to scroll further and further down the sheet everytime I reopen it.
Don't know why the change happened? Any suggestions on how to get it to
open where I leave it?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,549
Default How do I get excel to open with cursor in same cell as when close

What Excel version?
Did you recently change Excel versions?
Is the workbook shared?
Do others have access to the file?
Is the worksheet protected?
What add-ins are you using?
Is there any "code" in the workbook?
What changes were made to the workbook just before the problem started?
-and-
Are you saving the workbook before you close it?
--
Jim Cone
Portland, Oregon USA




"Angie69"
wrote in message
Up until a couple of weeks ago, when I closed and reopened an excel
spreadsheet, it would reopen in the cell where the cursor was left. Now all
of a sudden it jumps to one particular cell every time I reopen the
spreadsheet.. This is a spreadsheet that I use to input daily numbers, so I
am having to scroll further and further down the sheet everytime I reopen it.
Don't know why the change happened? Any suggestions on how to get it to
open where I leave it?
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default How do I get excel to open with cursor in same cell as when close

Excel won't remember where the activecell was when you close the workbook, but
it will remember the location when you save the workbook.

So if you save the workbook, then move somewhere else and close without saving,
that last location won't be remembered.

If you meant the location of the activecell when you saved, then maybe you have
a macro that's hslping.

If you open the workbook with macros disabled, do things work the way they
should?

If yes, then I bet you have a macro that's trying to "help".

On the other hand, you may like your own macro that goes to the next available
cell in column A of a specific worksheet whenever the workbook is opened.

If you want to try:

Option Explicit
Sub auto_open()

Dim NextCell As Range

With Worksheets("Sheet1") '<-- change to the correct sheet
Set NextCell = .Cells(.Rows.Count, "A").End(xlUp).Offset(1, 0)
End With

Application.Goto reference:=NextCell, scroll:=True 'or false?
End Sub

If you're new to macros:

Debra Dalgleish has some notes how to implement macros he
http://www.contextures.com/xlvba01.html

David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm

(General, Regular and Standard modules all describe the same thing.)

Angie69 wrote:

Up until a couple of weeks ago, when I closed and reopened an excel
spreadsheet, it would reopen in the cell where the cursor was left. Now all
of a sudden it jumps to one particular cell every time I reopen the
spreadsheet.. This is a spreadsheet that I use to input daily numbers, so I
am having to scroll further and further down the sheet everytime I reopen it.
Don't know why the change happened? Any suggestions on how to get it to
open where I leave it?


--

Dave Peterson
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
Is there a way to open a list by rolling the cursor over the cell? Rick Arends Excel Discussion (Misc queries) 0 October 12th 08 10:53 PM
Excel very slow to open or close RobinAdams Excel Discussion (Misc queries) 1 August 17th 06 05:01 PM
Excel should allow all open worksheets to close at once Jolly Jolly Excel Discussion (Misc queries) 2 May 25th 06 02:51 PM
Delete/Close Excel file that is kept OPEN Jafer New Users to Excel 0 April 15th 05 05:34 AM
Moving cursor to next open cell Wolf New Users to Excel 3 December 16th 04 08:59 PM


All times are GMT +1. The time now is 06:52 AM.

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

About Us

"It's about Microsoft Excel"