Jump to formula destination ? ? ?

D

Dodge Brown

Hi All


If I have a very large workbook, and say on Sheet1 a formula "=Sheet12!a1"
is there a shortcut way to jump directly to sheet 12 cell A1 ? ? ?


Thanks in Advance

Dodge
 
D

Dodge Brown

By Jump, I mean goto. Eg. Go from sheet 1 to sheet 12 cell A1 without having
to find the page and cell "manually"...
 
N

Niek Otten

Hi Dodge,

Click the Trace Precedents button (it is in the Formul auditing toolbar)
For references to other sheets, it shows an arrow and an icon of a sheet.
Double-click the arrow. You get a list of references (possibly just one).
Select the one you wish to go to and click OK.
May sound cumbersome, but once found out how to do, it's peanuts...

--

Kind Regards,

Niek Otten

Microsoft MVP - Excel
 
D

Dodge Brown

Thanks, that will be very helpfull when using large workbooks.

Cheers!

Dodge
 
G

Gord Dibben

Dodge

Tools>Options>Edit. Turn off "edit directly in cell".

Double-click on the cell in Sheet1 and you will wind up in Sheet12!A1

Gord Dibben XL2002
 
D

Dana DeLouis

Maybe not the best solution, but you could select your cell with the
formula, and do <Ctrl> + "k"
This will turn your formula into a Hyperlink. Just set the destination to
the same destination as the formula.

If your formula is as simple as your example, perhaps a macro could be
something like this:

Sub Demo()
Dim sAddress As String
sAddress = Mid$(ActiveCell.Formula, 2)
ActiveSheet.Hyperlinks.Add _
Anchor:=ActiveCell, _
Address:=vbNullString, _
SubAddress:=sAddress, _
ScreenTip:="Click to jump to " & sAddress
End Sub
 
D

Dodge Brown

Interestin one Gord, Thanks!

Gord Dibben said:
Dodge

Tools>Options>Edit. Turn off "edit directly in cell".

Double-click on the cell in Sheet1 and you will wind up in Sheet12!A1

Gord Dibben XL2002
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top