
Signature
HTH,
RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================
> <Ctrl> <PageUp>
> <Ctrl> <PageDown>
[quoted text clipped - 12 lines]
>
> Thanks.
Thank for the response. But I probably should have clarified my
question. Is there a way to go back and forth from Spreadsheet A and
Spreadsheet B (when they are not directly next to one another)?
Perhaps there is a way to go to the last active cell.......
JP - 24 Feb 2008 17:15 GMT
If you opened both worksheets with the same instance of Excel (using
File>Open), then Ctrl-Tab will switch between them.
HTH,
JP
> > <Ctrl> <PageUp>
> > <Ctrl> <PageDown>
[quoted text clipped - 22 lines]
>
> - Show quoted text -
Gord Dibben - 24 Feb 2008 17:29 GMT
Sub Toggle_Sheets()
With ActiveWindow
If ActiveSheet.Name = "SheetA" Then
Sheets("SheetB").Activate
Else
Sheets("SheetA").Activate
End If
End With
End Sub
Gord Dibben MS Excel MVP
>Thank for the response. But I probably should have clarified my
>question. Is there a way to go back and forth from Spreadsheet A and
>Spreadsheet B (when they are not directly next to one another)?
>Perhaps there is a way to go to the last active cell.......
Ragdyer - 24 Feb 2008 18:34 GMT
Have your tried Hyperlinks?

Signature
Regards,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
On Feb 23, 11:33 am, "RagDyeR" <ragd...@cutoutmsn.com> wrote:
> <Ctrl> <PageUp>
> <Ctrl> <PageDown>
[quoted text clipped - 15 lines]
>
> Thanks.
Thank for the response. But I probably should have clarified my
question. Is there a way to go back and forth from Spreadsheet A and
Spreadsheet B (when they are not directly next to one another)?
Perhaps there is a way to go to the last active cell.......