View Two Sheets Side-by-Side in the Same Workbook

Bottom Line: Learn how to view and compare two worksheets in the same workbook with the New Window feature, split screen view, and synchronous scrolling.

Skill Level: Beginner

Video Tutorial

Watch on YouTube and give it a thumbs up.
YouTube Subscribe Logo Excel Campus

Make Comparisons Between Sheets Easier

Sometimes we need to flip back and forth between two worksheets in order to compare numbers, copy and paste entries, or create formulas. In these instances, it can be much easier to look at the two (or more) sheets side by side.

To accomplish this, we can use the New Window feature in Excel, as well as some desktop shortcuts to create a split screen view of the the sheets we want to look at simultaneously. It's a fairly easy habit to pick up and will save you lots of time and frustration in the long run.

Creating a New Window

We can view two or more sheets from the same workbook by using the New Window feature.

To make a new window, go to the View tab on the Ribbon and press the New Window button. This will create a new window of the active workbook (the workbook you were viewing when you pressed New Window).

New Window Button on View Tab

The keyboard shortcut to open a new window is Alt + W + N.

Once you've created a new window, you can differentiate between the new and the old by looking at the title bar at the top. The new window will have a dash and the number 2 (then 3, 4, 5 and so on as you continue to open new windows).

Title Bar New Window

Changes are Synced Between Windows

Keep in mind that you are NOT creating a duplicate file, just a new window to look at the same file. Any change you make to the workbook in one window will be reflected in the other. It does NOT matter which window you make changes in. All windows will be updated immediately.

Toggling Between Windows

You can now select a different sheet in the new window to view and edit it.  You can then quickly flip between windows by using the Alt + Tab

keyboard shortcut. Hold Alt, then press and release Tab.

This is a very handy shortcut that makes it easy to flip between windows (sheets) when doing common actions like copy & paste.

Create a Split Screen View

To tile the windows side by side, you can simply click on the title bar and then drag the window to the right of the screen. If you have multiple windows open on your computer, you may have to select which window you want to view on the left.

Split Screen New Window 699

I've written a whole post about tips for split screen usage for both Windows and Mac users. I encourage you to check it out and see how you can improve your productivity game with split screens.

Note: This behavior is slightly different in Excel 2010 and earlier. See the section below for details.

Synchronous Scrolling

One cool feature to employ while using a split screen is that you can scroll both sheets at the same time. This is especially helpful if you need to compare line by line, looking for differences in similar sets of data.

To turn on synchronous scrolling, just go to the View tab on the Ribbon and choose the Synchronous Scrolling button.

The Synchronous Scrolling Button may be grayed out. If so, you need to turn on View Side by Side. You can do this by clicking the button directly above Synchronous Scrolling. Keyboard shortcut: Alt+W+B

When you click on View Side by Side, it tends to reset any split screen setup you already had, so you may need to drag your window to the right again to see them side by side.

Once your windows are side by side and you've clicked the Synchronous Scrolling button, you will see how both sheets scroll simultaneously. This is the case whether you are using the up and down arrows on your keyboard, the scroll bar in either of the windows, or the roller wheel on your mouse.

See the video above for more details on this issue.

And just so you know, you can also use Synchronous Scrolling with two different workbooks as well.

Closing the New Window

Once you are finished, you can simply close either of the windows by pressing the red X in the top right of the application window. This will just close the additional window, and NOT close the file. The “-2” will disappear after the file name and you will be left with only one window open for the file.

Close Button on Either Window to Close Additional Window

You will NOT be prompted to save the file when you close the additional window. You will only be prompted to save when you close the last remaining window for the file.

Close the “-2” Window First!

Even though you can close either window, it's best to close the “-2” window first. The new window does not retain the settings for gridlines or freeze panes. This is an unfortunate limitation of Excel.

If you close the “-1” window and then make changes to the workbook, you will lose the gridline and freeze pane settings that are applied to each sheet.

I posted a macro in the comment below that apples the gridline settings for each sheet to the new window. I'll do a dedicated post on this in the future.

And a big thanks to Andre for pointing out the issue with closing window “-2” first.

Excel 2010 and Earlier

If you're using Excel 2010 or earlier for Windows then the process for viewing multiple windows is slightly different.

These versions of Excel used the Multiple Document Interface (MDI). This means all Excel files/windows are opened in the same application window. Excel is able to display multiple documents.

You can view multiple windows within Excel by clicking the Restore button for the current window.

View Multiple Excel Files Windows Excel 2010 2007 Multiple Document Interface

The Arrange All and View Side by Side buttons can still be used as well. That will be the same as the instructions above.

When you want to view a single window again you can click the Maximize button in any window.

Excel 2010 2007 Maximize Button to View Window Full Screen

Excel 2013 and beyond moved to a Single Document Interface (SDI), which is what I explained in the article above.

Conclusion

I hope this post has been helpful to you for learning how to create a new window and view two (or more) worksheets from the same workbook.

The full keyboard shortcut to setup the new window in split screen is:

Alt+W+N ,Alt+W+B

This view can save us a lot of time when comparing data and tying out numbers between sheets.

Please leave a comment below with any questions or suggestions. Thank you! 🙂

48 comments

Your email address will not be published. Required fields are marked *

  • I use the New Window feature regularly. I have 3 monitors so at times I have 6 “new windows” going . One question. How do I prevent Excel from turning on Grid lines in the new windows? (I turn off grid lines to make it cleaner looking for my users.) It’s really annoying and if I forget and leave one of the new windows as the last one before save/close – the grid lines are on and I have to go through and turn them all off again.

    Thanks

    • Hi Tom,
      Wow that is a lot of Excel! Awesome!!

      Great question here. The grid lines are actually a window level setting. The window settings get reset to their defaults when a new window is created. I’m not exactly sure why it’s a window level property instead of a worksheet property. I’ll do some research and see if anyone at MS knows.

      One workaround is to use a macro to apply the original grid line settings to each sheet in the new window. Here is a macro I just wrote to do that. It also creates the new window. So you could potentially use this instead of the New Window button. You could add it to your Personal Macro Workbook and create a keyboard shortcut or put a button in the ribbon.

      Sub New_Window_Preserve_Gridline_Settings()
      'Create a new window and apply the grid line settings
      'for each sheet.

      Dim ws As Worksheet
      Dim i As Long
      Dim bGrid As Boolean
      Dim iActive As Long

        Application.ScreenUpdating = False

        'Store the active sheet
        iActive = ActiveSheet.Index

        'Create new window
        ActiveWindow.NewWindow
        
        'Loop through worksheets of original workbook
        'and apply grid line settings to each sheet.
        For i = 2 To ActiveWorkbook.Windows.Count
          For Each ws In ActiveWorkbook.Worksheets
            Windows(ActiveWorkbook.Name & "  -  1").Activate
            ws.Activate
            bGrid = ActiveWindow.DisplayGridlines
            Windows(ActiveWorkbook.Name & "  -  " & i).Activate
            Worksheets(ws.Index).Activate
            ActiveWindow.DisplayGridlines = bGrid
          Next ws
          'Activate original active sheet
          Worksheets(iActive).Activate
        Next i
        
        'Activate the original active sheet
        Windows(ActiveWorkbook.Name & "  -  1").Activate
        Worksheets(iActive).Activate
        
        Application.ScreenUpdating = True

      End Sub

      Note: I have not tested this code thoroughly yet. It could probably also be made more efficient by storing the gridline property values in an array, then looping through the other windows. Especially if you have more than one extra window. Give it a try and let me know how it works for you. And definitely save your file before running it. I think it could be pretty labor intensive if your workbook has a lot of worksheets.

      I’ll add this to the list for a future post as well. Thanks again Tom! 🙂

    • Here is an update to the macro that applies the Freeze Panes settings as well.

      Sub New_Window_Preserve_Gridline_Settings()
      'Create a new window and apply the grid line settings
      'for each sheet.

      Dim ws As Worksheet
      Dim i As Long
      Dim bGrid As Boolean
      Dim bPanes As Boolean
      Dim iSplitRow As Long
      Dim iSplitCol As Long
      Dim iActive As Long

        'Application.ScreenUpdating = False

        'Store the active sheet
        iActive = ActiveSheet.Index

        'Create new window
        ActiveWindow.NewWindow
        
        
        'Loop through worksheets of original workbook
        'and apply grid line settings to each sheet.
        For i = 2 To ActiveWorkbook.Windows.Count
          For Each ws In ActiveWorkbook.Worksheets
            Windows(ActiveWorkbook.Name & "  -  1").Activate
            
            ws.Activate
            bGrid = ActiveWindow.DisplayGridlines
            
            'Get freeze panes
            bPanes = ActiveWindow.FreezePanes
            If bPanes Then
               iSplitRow = ActiveWindow.SplitRow
               iSplitCol = ActiveWindow.SplitColumn
            End If
            Windows(ActiveWorkbook.Name & "  -  " & i).Activate
            Worksheets(ws.Index).Activate
            ActiveWindow.DisplayGridlines = bGrid
            If bPanes Then
              ActiveWindow.SplitRow = iSplitRow
              ActiveWindow.SplitColumn = iSplitCol
              ActiveWindow.FreezePanes = True
            End If
          Next ws
          'Activate original active sheet
          Worksheets(iActive).Activate
        Next i
        
        'Activate the original active sheet
        Windows(ActiveWorkbook.Name & "  -  1").Activate
        Worksheets(iActive).Activate
        
        Application.ScreenUpdating = True

      End Sub
      • Great job! Thank you for this post and macro! I suggest copying also ActiveWindow.Zoom setting. Also note that newer Excel versions add “:1” and “:2″ instead of ” – 1″ and ” – 2″ to workbook names.

  • I wish I would have come across this a long time ago because this is going to be very helpful in my job. Thank you for sharing this information.

  • This is great! I have multiple project plan workbooks with a summary page that updates based on inputs to other sheets and setting up the workbook requires a lot of back an forth to check changes! Now I can do it on multiple monitors and lee live changes!!!!!

  • Awesome video. This will be incredibly useful to me. I shared it with my several people in my organization. Had no idea this feature existed.

  • Jon,
    The split screen is very useful to me and will start using today. No more clicking tabs back and forth!

  • Do you like the entire post in the email better? yes, if you are on your phone when reading it is very beneficial.

  • Hi Jon,

    thank you for that helpful post. 🙂

    Maybe it is worth to mention that when you save a file with multiple windows open and close it, ist will open with the same set of multiple windows again.

    Michael

  • Hi Jon,

    I am using Excel 2010 (Office Professional Plus 2010).
    I see the “New Window” button under the “View” menu.
    Clicking the button creates a second Excel-file (I see the -1 and -2), but both remain in the same “window”.
    On the Taskbar, when hoovering over the Excel logo, I see that here are 2 files open (-1 and -2), but I cannot see both windows at the same time.

    Am I doing something wrong?

    Walter

    • Hi Walter,
      Great question! Sorry, I should have mentioned this in the original post.

      Excel 2010 and earlier use a Multi Document Interface (MDI), which means the windows will all open up in the same Excel application window. I added a 2010 section in the post above that explains how to use the Restore button to view multiple windows.

      Excel 2013 and beyond moved to a Single Document (SDI), which means each window/file is in a separate window.

      I hope that helps.

  • My new Window naming convention is different. Your example shows and talks about “-2”, but mine shows as “:2”. I’m on Excel 2013, so why the difference?

  • Thank you for this, but there is one issue, like when i have this view side by side, i want to check a different sheet and make changes in the original sheet, but the moment i make changes in the original sheet the 2nd sheet also goes back to the main tab/sheet where the changes are being made. how to keep the 2nd sheet constant while i only view information in that and make changes in the original sheet. Thanks.

  • Hello Jon,

    Thanks for your helpful tutorial

    I have recently had a new work computer and I miss the MDI functionality that the old excel version had. I liked that I could view multiple worksheets in one window. I could see all the data in each work sheet and control them with a single tool bar. Now a lot of the space is used up by tool bars, etc. Is there a way to replicate this aspect of MDI in the new version of excel?

    All the best

    Roddy

    • The button that says “Arrange All”, found right underneath the “New Window” button, allows you to arrange all windows tiled, horizontally, vertically, or cascaded.

  • I’m having an issue with syncing that I can’t find an answer to on Google: I have 2 windows open, both showing the same sheet. When I make changes to one, the other doesn’t sync/update, and keeps the old information. I’ve saved and closed the windows and application, but the issue persists.

    Can you offer any insight to why this is happening?

    Thanks

  • How do I fix it if the -1 file was closed before -2. I have tried re-saving the -2 but it always opens with -2 at the end but as far as I know the -1 file no longer exists.

Generic filters
Exact matches only

Excel Shortcuts List

keyboard shortcuts list banner

Learn over 270 Excel keyboard & mouse shortcuts for Windows & Mac.

Excel Shortcuts List

Join Our Weekly Newsletter

The Excel Pro Tips Newsletter is packed with tips & techniques to help you master Excel.

Join Our Free Newsletter