Hi Gabby, (sent to microsoft.public.excel with email copy)
If you goto other sheet with a hyperlink you can use the
web Back (Alt+ArrowRt) and Forward (Alt+ArrowLt) and
if you like you could install the turquoise colored arrows
Tools, Customize, Commands (tab), Web (left side), arrows on right
=HYPERLINK("#"&CELL("address",C5),C5)
=HYPERLINK("#sheet5", "sheet5")
the second would not pick up a sheetname change in any
manner. You might want to enter/use object hyperlink instead (ctrl+k)
Another way would be to install an Event macro such
as doubleclick or rightclick to go to the page named
in the macro, or to go to the name of sheet listed in a
cell. Because you got there with a hyperlink you can
return with the BACK button. Install by rightclick on
sheetname, view code.
Private Sub Worksheet_BeforeDoubleClick(ByVal Target _
As Range, Cancel As Boolean)
Cancel = True 'Get out of edit mode
ActiveWorkbook.FollowHyperlink ("#sheet_1920!C5")
End Sub
You can adapt the above to use rightclick instead or
to use the activecell for the sheetname.
More information on Event macros in
http://www.mvps.org/dmcritchie/excel/event.htm
More information on Hyperlinks in from one worksheet to another
http://www.mvps.org/dmcritchie/excel/sheets.htm#hyperlinks
Email copy was included because your post was a week ago,
if you have more related questions or feedback would prefer you
to stick to this thread in the newsgroup.
Something similar to Alt Tabs in Windows, which doesn't sound very
useful, would be to Right-click on the navigation arrows to the
left of the worksheet tabs to bring up a list of sheetnames in
the same order that you have them. To make it more useful
you could sort the sheetnames.
http://www.mvps.org/dmcritchie/excel/buildtoc2.htm#sortallsheets
I say not very useful because you wanted to go between two
specific worksheets, and I think the other choices are a better
match to what you want to do. More information at
http://www.mvps.org/dmcritchie/excel/sheets.htm#navigation
---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages:
http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page:
http://www.mvps.org/dmcritchie/excel/search.htm
GabbyU said:
I have an xls with many worksheets. Often times I need to work between 2
worksheets only, say Sheet G and Sheet B2. Is there a keyboard shortcut that
will allow me to toggle between 2 non-adjacent sheets. I cannot hide the
sheets in-between because I also need to refer to them from time-to-time.
Something similar to an Alt-Tab in Windows.