Excel shortcut to go back to previous cell (last position)

16

6

There is a cool shortcut to go to a precedent cell: ctrl+[
This takes you to the source of your data in a cell that is linked from another worksheet for example.

I'm trying to find a shortcut that will take me back to the original cell that I was viewing. Doesn't seem to exist. Anyone?

malibu06

Posted 2010-08-20T14:47:14.623

Reputation: 161

Answers

14

Either of the following sets of keystrokes will take you back to the original cell:

  • F5, Enter
  • Ctrl+G, Enter

F5 and Ctrl+G are shortcuts to bring up the "Go To" dialogue box. The dialogue box will be pre-populated with the address of the original cell, and you can press Enter to go there.

Levi

Posted 2010-08-20T14:47:14.623

Reputation: 516

2

Press F5

In the new window, click Special.

From here, click on Last Cell and then press enter.

Or, if you want keyboard then it's F5 ALT+ S and then another S and then Enter

The above could easily be assigned to a keyboard mapping tool like AUTOHOTKEY so it would be a single instruction.

Dave

Posted 2010-08-20T14:47:14.623

Reputation: 24 199

Just to save anyone else trying this - it takes you to the final (last) cell of the used range, not the cell that you were previously in. – Levi – 2016-12-29T16:46:24.763

1

I think Ctrl + ] works, but only if you have the target cell still selected and it will select all dependants of that cell, not just the one you got there from.

DMA57361

Posted 2010-08-20T14:47:14.623

Reputation: 17 581

Good tip! However, this only appears to work as long as the dependent cell is on the same worksheet. – Andi Mohr – 2014-01-16T10:16:00.990

1

You could make a macro to do this.

First you would want to create a macro that runs when "ctrl+[" is run that remembers your current worksheet and cell, and then runs the usual command that jumps you to the source (to find this out, try recording a macro when you push the ctrl+[ and see what command is used). Now that you're position is saved, you can create a second macro with hotkey of your choosing that will grab the saved worksheet and position and jump to that spot.

Jarvin

Posted 2010-08-20T14:47:14.623

Reputation: 6 712