Inadvertantly Getting Rid of Frozen Panes

Written by Allen Wyatt (last updated December 25, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


1

Steven has a worksheet with many rows and columns of data. He has frozen the first row and column by making cell B2 active and then freezing panes. This works as he wants it to. He can even save and close the workbook, and the panes are still frozen when he reopens the workbook. However, if Steven opens a new window for the workbook (View | Window | New Window), the new window does not have frozen panes. As he has frozen panes on many worksheets in this workbook, he has to be very careful about which window he closes first. If he closes the original window first, when he saves the workbook it saves all the unfrozen worksheets. Steven wonders if there is a way to get the new window to retain the frozen panes settings?

There is no setting in Excel that will handle what Steven needs to happen. The reason that the frozen panes are not saved is because FreezePanes (along with Zoom, Split, and a few other settings) are properties of windows, not of worksheets or workbooks. When a new window is created, the properties are not inherited from the original window.

You can, however, get around this behavior (and solve Steven's problem) by using a macro to do the setup for you. A very short approach is to forego using the ribbon tools to create your new window. Instead, add this macro to the QAT and use it to do the window creation:

Sub CreateNewWindow1()
    Dim rPane As Range

    Set rPane = ActiveWindow.VisibleRange(1)
    ActiveWindow.NewWindow
    ActiveSheet.Range("B2").Select
    ActiveWindow.FreezePanes = True
End Sub

The macro creates a new window, sets the visible cells equal to what is shown in the original window, selects cell B2 in the new window, and then freezes the panes.

This simple of an approach may not work, however, if your "pane freezing" needs are more varied. For instance, you may want a way to create a new window and have it match whatever panes were in the window that was active when you created the new window.

The following macro checks to see if the current window has a a fozen pane. If it does, then it figures out where it is frozen and uses that to set the frozen panes in a new window. If there are no frozen panes, then a new window is created anyway, and nothing there is frozen. In either case, the same cell is selected in the new window as was selected in the original.

Sub CreateNewWindow2()
    Dim iRow As Integer
    Dim iCol As Integer
    Dim rOldPos As Range

    iRow = 0
    iCol = 0
    If ActiveWindow.FreezePanes Then
        iRow = ActiveWindow.ScrollRow
        iCol = ActiveWindow.ScrollColumn
    End If
    Set rOldPos = ActiveCell
    ActiveWindow.NewWindow
    If (iRow > 0) And (iCol > 0) Then
        Cells(iRow, iCol).Select
        ActiveWindow.FreezePanes = True
    End If
    rOldPos.Select
End Sub

This code, again, could be used for creating any new windows you want. They accomplish what Steven needed done because they copy the frozen pane settings from the active window to the newly created window.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13366) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Removing All Text Boxes In a Document

Text boxes are a common element of many types of documents. At some point you may want to get rid of all the text boxes ...

Discover More

Improper Index Page Numbers

Adding an index to a document can be a nice finishing touch, particularly if the document is a long one. What happens if ...

Discover More

Understanding Master and Subdocuments

Most people use Word to create regular documents that you edit, view, and print. The program also allows you to create a ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Modifying Error Alerts Received

Excel helpfully lets you know when the data or formulas you've entered in a cell don't make sense. It does this by ...

Discover More

Disabling the F1 Key

Tired of hitting the F1 key by mistake and pulling up the Help system? Here are a couple of ways (one drastic and one not ...

Discover More

Slowing Down Mouse Selection

Ever tried to select a range of cells using the mouse, only to have the cells scroll by so quickly you can't make the ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 8 - 5?

2021-12-25 11:46:24

Willy Vanhaelen

The second macro in this tip is rather complex and preserves only the frozen panes of the active sheet.

The following macro, is only half the size and much more performant. It creates a second window preserving frozen panes (even complex ones) in all sheets of the active workbook:
- It tries to create a custom view preserving frozen panes in all sheets
  (it will not succeed if for instance the workbook contains a table).
- It then creates a new window.
- If the creation of a custom view was successful it applies it to the second window
- It then deletes the custom view (if any) because it is not needed anymore.
- If it was not able to create a custom view, only a normal second window is created
  and MsgBox warns you of that.

Sub WindowReplica()
On Error Resume Next
With ActiveWorkbook
.CustomViews.Add ViewName:="tmp", PrintSettings:=True, RowColSettings:=True
.NewWindow
.CustomViews("tmp").Show
.CustomViews("tmp").Delete
End With
If Len(Error) Then MsgBox "Attention: no 'Custom View'", vbExclamation
End Sub


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.