Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Seeing All Open Workbook Names.

Seeing All Open Workbook Names

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


1

Excel allows you to open quite a few workbooks at the same time, depending on the amount of memory you have available on your system. For some people it is not unusual to have ten, fifteen, twenty, or more workbooks open, all at once.

Traditionally, the normal method used to switch from one workbook to another is to display the View tab of the ribbon and use the Switch Windows tool to select the desired workbook. If there are more than nine workbooks open and you click the Switch Windows tool, Excel displays an option that says "More Windows." Click the option and you can see a display of all open workbooks. Selecting a workbook from this list ends up in that workbook being displayed.

If you routinely work with many open workbooks, it can be a pain to repeatedly click the Switch Windows tool, click More Windows, and then select which workbook you want to view. It would be much easier if the workbooks were all listed and if you could then select from the list. Unfortunately, Excel doesn't allow you to display more than nine workbooks using the Switch Windows tool. (Nine seems to be a rather arbitrary number, but Microsoft had to set a limit somewhere. Nine is just as good as any other arbitrary limit.) There are, however, some workarounds you can use.

The first workaround is to use the task-switching capabilities of Excel. Just hold down the Alt key as you repeatedly press the Tab key to switch from one window to another. When the desired workbook window is selected, release the Alt key and the actual workbook is displayed.

You can also develop macros to display a list of workbooks, allow you to select one, and then switch among them. The most efficient way to do this is to create a UserForm and attach several macros to it. Follow these steps:

  1. Make sure you have created a Personal workbook to contain your common macros. (How this is done has been discussed in other issues of ExcelTips.)
  2. Press Alt+F11 to display the VBA Editor.
  3. Make sure the Personal workbook is selected in the Project window. (Upper-left corner of the VBA Editor.)
  4. Choose UserForm from the Insert menu. A new UserForm appears in the center of your screen.
  5. Using the toolbox at the left side of the VBA Editor, place a ListBox control on the UserForm. This control will hold the list of open workbooks. (Feel free to make the ListBox as large or small as desired.)
  6. Add any other items desired to the UserForm, such as explanation text, etc.
  7. Resize the UserForm to the size you want displayed.
  8. Right-click on the UserForm (not on the ListBox) and select View Code from the Context menu. You then see the Code window for the UserForm.
  9. Replace whatever is in the Code window with the following code:
  10. Private Sub ListBox1_Click()
        Windows(ListBox1.Value).Activate
        Unload Me
    End Sub
    
    Private Sub UserForm_Activate()
        Dim wkb As Workbook
    
        For Each wkb In Workbooks
            If Windows(wkb.Name).Visible Then _
              ListBox1.AddItem wkb.Name
        Next
    End Sub
    
  11. Choose Module from the Insert menu. A Code window appears for the new module.
  12. Add the following code to the module's Code window:
  13. Sub AllWindows()
        UserForm1.Show
    End Sub
    
  14. Close the VBA Editor and return to Excel by pressing Alt+Q.

Once in Excel, you can assign the AllWindows macro to the Quick Access Toolbar or to a shortcut key. When you then click on the toolbar button or the shortcut key, the UserForm is displayed, showing all the open workbooks. You can then select one, and the UserForm disappears and the selected workbook is displayed.

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 (8449) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Seeing All Open Workbook Names.

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

Creating an AutoShape

Ever wanted to create a simple drawing in your worksheet? Excel has made this simple. This tip explains how Excel uses ...

Discover More

Saving Common Formulas

It is not uncommon to reuse formulas in a variety of workbooks. If you develop some "gotta keep" formulas, here are some ...

Discover More

Creating a Workbook Clone

If you are afraid of messing up a workbook, consider doing your work on a clone of the workbook. Excel provides an easy ...

Discover More

Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!

More ExcelTips (ribbon)

Copying Large, Object-Rich Worksheets from a Corrupted Workbook

Salvaging information from a corrupted workbook can be a lot of work. This tip looks at how you can approach the problem ...

Discover More

Stopping a Workbook from Persistently Auto-Loading

Excel has the capability to automatically open workbooks when you first start the program. You may not want to have one ...

Discover More

Tying Workbooks Together

If you work with multiple workbooks at the same time, you might wonder how to tie them together so they open and close at ...

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-11-27 10:56:50

J. Woolley

My Excel Toolbox includes the dynamic array function ListWorkbooks(), which simply lists all open workbooks as an array with 1 row and N columns. You can use it like this for 1 column and N rows:
=TRANSPOSE(ListWorkbooks())
In older versions of Excel you can use it with the SpillArray function like this:
=SpillArray(TRANSPOSE(ListWorkbooks())
If the list is in column A, you can use the SuperLink function in column B to create a hyperlink that will activate a workbook in the list. For example, this formula in cell B7 will hyperlink the workbook listed in cell A7:
=SuperLink("["&A7&"]")
If the workbook has a different path, that must be included in the SuperLink formula.
See https://sites.google.com/view/MyExcelToolbox/


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.