ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   navigation macro freezes (https://www.excelbanter.com/excel-programming/340329-navigation-macro-freezes.html)

cmarch[_2_]

navigation macro freezes
 
I have an command button with code attached to move to a spot and
freeze the pane.

Private Sub NavigatetoSpot_Click()
'
' Go to Spot and freeze pane
'
' Go to last spot to ensure below title area
Application.Goto Reference:="AreaLast"
' Go to title area so it is showing in topleft
Application.Goto Reference:="Title"
' Go to one cell below title and freeze the pane
Application.Goto Reference:="FreezePaneSpot"
ActiveWindow.FreezePanes = True
End Sub

Problem is after the command button executes the code, I cannot move
with the cursor keys or execute the return macro. I have to click on a
cell with the mouse or hit escape button. Tried to repeat the go to
the FreezePaneSpot and still locked in position.

How do I fix this?
Thanks so much.
CMarch


Vacation's Over

navigation macro freezes
 
Try-

range("Title").offset(1,1).select

"cmarch" wrote:

I have an command button with code attached to move to a spot and
freeze the pane.

Private Sub NavigatetoSpot_Click()
'
' Go to Spot and freeze pane
'
' Go to last spot to ensure below title area
Application.Goto Reference:="AreaLast"
' Go to title area so it is showing in topleft
Application.Goto Reference:="Title"
' Go to one cell below title and freeze the pane
Application.Goto Reference:="FreezePaneSpot"
ActiveWindow.FreezePanes = True
End Sub

Problem is after the command button executes the code, I cannot move
with the cursor keys or execute the return macro. I have to click on a
cell with the mouse or hit escape button. Tried to repeat the go to
the FreezePaneSpot and still locked in position.

How do I fix this?
Thanks so much.
CMarch




All times are GMT +1. The time now is 02:46 PM.

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