Ability To Navigate Back To Previous Cell Selected

miketurn

Active Member
Joined
Dec 8, 2016
Messages
268
I have seen many posts about this but have not really found anything that works for me.
I am looking for a hotkey or macro that allows you to go back to the previous cell selected.
I am currently using 2003, and I have tried F5 / CTRL+G, someone else mentioned somewhere to try CTRL + Backspace which did not work either.

I would even take a macro if anyone has one already created?

Example:
Say you cut or copy text from cell A100 and you scroll up to A1 and paste it, I am looking for a quick simple one button action that navigates back to A100

It is not extremely important but could be a nice tool to have, may also be a nice piece of code to have to add this feature to other macros.

If anyone has anything like this, please let me know.
Thank You
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi,

This looks promising:
Code:
Private SelectionStack   As Object

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
    Const StackSize     As Long = 50
    
    If SelectionStack Is Nothing Then Set SelectionStack = New Collection
    SelectionStack.Add Target.Address(, , True, True)
    If SelectionStack.Count > StackSize Then SelectionStack.Remove (1)
End Sub

Sub goBack()
    Application.EnableEvents = False
    On Error GoTo err
    With SelectionStack
        If .Count <= 1 Then
            MsgBox "No items in stack"
        Else
            Application.Goto (.Item(.Count - 1))
            .Remove (.Count)
        End If
    End With
err:
     Application.EnableEvents = True
End Sub
I put that into the ThisWorkbook module. With a slight modification it could be made to work in a Personal workbook as well. That way, it would work across workbooks.

It creates a Collection called SelectionStack.
When the selection is changed for the first time the Collection is created.
Every time a selection is changed, the full address (in R1C1 format - trick to make Application.Goto work) is added to the Collection.

I also created a Quick Access Toolbar button that called the ThisWorkbook.goBack macro.
When you click that button, the items in the Collection will be read from the end and Excel will go to that selection.

If the stack becomes empty then a message is displayed. It currently holds 50 items (set by Const StackSize As Long = 50). Change as necessary.
If the Collection has not been created when the goBack macro is run, it fails on the .Count property and skips to the end.


Regards.
 
Last edited:
Upvote 0
@RickXL
Thank you for your response, I am sorry it took me so long to get back here but Windows 7 has taken me on quite a journey.
Thank you for supplying this macro.
 
Upvote 0

Forum statistics

Threads
1,214,636
Messages
6,120,666
Members
448,977
Latest member
moonlight6

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top