Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Jan
 
Posts: n/a
Default shortcut to go to previous location or cell

Is there a shortcut to take me back to the previous location (cell) that I
was in?
  #2   Report Post  
Max
 
Posts: n/a
Default shortcut to go to previous location or cell

If there was an action done in the previous cell,
then perhaps ... click Undo?
(At the expense of undoing, of course,
and subject to the default max number of undo's)

Hang around awhile for better answers ..
--
Rgds
Max
xl 97
---
Singapore, GMT+8
xdemechanik
http://savefile.com/projects/236895
--
"Jan" wrote in message
...
Is there a shortcut to take me back to the previous location (cell) that I
was in?



  #3   Report Post  
Stefi
 
Posts: n/a
Default shortcut to go to previous location or cell

Hi Jan,

Maybe you can create a macro solution:
Create workbook-level public variables:

Private Sub Workbook_Open()
startcell = ActiveCell.Address
prevcell = ""
End Sub

Selection_Change event:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
prevcell = startcell
startcell = Target.Address
End Sub

Normal module:
Declarations
Public startcell As String
Public prevcell As String

Macros, assign a hotkey to this macro in :
Sub Goback()
Range(prevcell).Select
End Sub

Regards,
Stefi

€˛Jan€¯ ezt Ć*rta:

Is there a shortcut to take me back to the previous location (cell) that I
was in?

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
Does Excel 2003 have a shortcut command to wrap text in a cell? JAM_Analyst Excel Discussion (Misc queries) 3 June 12th 07 06:01 PM
Possible Lookup Table Karen Excel Worksheet Functions 5 June 8th 05 09:43 PM
up to 7 functions? ALex Excel Worksheet Functions 10 April 12th 05 06:42 PM
How would I fill blank cells with the data from a previous cell? Clive Darling Excel Discussion (Misc queries) 3 January 6th 05 01:10 AM
input value in a cell when the previous cell is greater than 0 vinod New Users to Excel 1 December 2nd 04 06:15 PM


All times are GMT +1. The time now is 02:36 AM.

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"