ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   How do I JUMP from pane 1 to Pane 2? (https://www.excelbanter.com/excel-worksheet-functions/55365-how-do-i-jump-pane-1-pane-2-a.html)

Ken Jarvis

How do I JUMP from pane 1 to Pane 2?
 
I split a worksheet into 2 panes.
Pane 1
Pane 2
What keyboard keystrokes can I use to JUMP from
pane 1 to pane 2?

Chip Pearson

How do I JUMP from pane 1 to Pane 2?
 
As far as I know, there is no shortcut key for this. You could
assign the following macro to a shortcut key:

Sub SwapPanes()
If ActiveWindow.ActivePane.Index = 1 Then
ActiveWindow.Panes(2).Activate
Else
ActiveWindow.Panes(1).Activate
End If
End Sub



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Ken Jarvis" <Ken wrote in
message
...
I split a worksheet into 2 panes.
Pane 1
Pane 2
What keyboard keystrokes can I use to JUMP from
pane 1 to pane 2?




Chip Pearson

How do I JUMP from pane 1 to Pane 2?
 
A bit more robust:

Sub SwapPanes()
If ActiveWindow.Panes.Count 1 Then
If ActiveWindow.ActivePane.Index = 1 Then
ActiveWindow.Panes(2).Activate
Else
ActiveWindow.Panes(1).Activate
End If
End If
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Chip Pearson" wrote in message
...
As far as I know, there is no shortcut key for this. You could
assign the following macro to a shortcut key:

Sub SwapPanes()
If ActiveWindow.ActivePane.Index = 1 Then
ActiveWindow.Panes(2).Activate
Else
ActiveWindow.Panes(1).Activate
End If
End Sub



--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Ken Jarvis" <Ken wrote in
message
...
I split a worksheet into 2 panes.
Pane 1
Pane 2
What keyboard keystrokes can I use to JUMP from
pane 1 to pane 2?






Gary L Brown

How do I JUMP from pane 1 to Pane 2?
 
F6 and Shift-F6
HTH,
--
Gary Brown

If this post was helpful, please click the ''''Yes'''' button next to
''''Was this Post Helpfull to you?".


"Ken Jarvis" wrote:

I split a worksheet into 2 panes.
Pane 1
Pane 2
What keyboard keystrokes can I use to JUMP from
pane 1 to pane 2?


PCLIVE

How do I JUMP from pane 1 to Pane 2?
 
I believe this is supposed to be ctrl+F6

"Gary L Brown" wrote in message
...
F6 and Shift-F6
HTH,
--
Gary Brown

If this post was helpful, please click the ''''Yes'''' button next to
''''Was this Post Helpfull to you?".


"Ken Jarvis" wrote:

I split a worksheet into 2 panes.
Pane 1
Pane 2
What keyboard keystrokes can I use to JUMP from
pane 1 to pane 2?




PCLIVE

How do I JUMP from pane 1 to Pane 2?
 
Nope. You were correct Gary. Ctrl+F6 will switch between excel windows.
Paul

"PCLIVE" wrote in message
...
I believe this is supposed to be ctrl+F6

"Gary L Brown" wrote in message
...
F6 and Shift-F6
HTH,
--
Gary Brown

If this post was helpful, please click the ''''Yes'''' button next to
''''Was this Post Helpfull to you?".


"Ken Jarvis" wrote:

I split a worksheet into 2 panes.
Pane 1
Pane 2
What keyboard keystrokes can I use to JUMP from
pane 1 to pane 2?







All times are GMT +1. The time now is 10:11 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com