Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Displaying the First Worksheet in a Macro.

Displaying the First Worksheet in a Macro

Written by Allen Wyatt (last updated January 11, 2020)
This tip applies to Excel 97, 2000, 2002, and 2003


Terri has a macro that runs automatically when a worksheet is opened. One thing it does is to display the first worksheet in the workbook, which is usually called "Consolidated." This works great, unless the first worksheet doesn't have this name. Then Terri must remember to change the macro to specify a different worksheet name. She wonders if there is a way to write her macro so that the first worksheet is always displayed, regardless of its name?

Normally, as Terri alludes to, you would display a given worksheet by using its name in the statement, in this manner:

Worksheets("Consolidated").Activate

This works great, as long as there is a worksheet by this name (Consolidated) in the workbook. Displaying a particular worksheet (like the first one in the workbook) when you don't know what the name of that worksheet might be takes a different approach.

The simple answer is to start referring to the worksheet using its position within the Worksheets collection. All the worksheets in a workbook belong to a collection of worksheet objects. This collection is (oddly enough) referred to as the Worksheets collection. You can refer to an individual worksheet in the collection by name (as was done in the previous example) or you can refer to them by using an index number within the collection. For instance, you can activate the first worksheet in the collection in this manner:

Worksheets(1).Activate

Using this method, it really doesn't matter what the name of the first worksheet is; it could easily be "Consolidated" or some other name. Excel dutifully activates the first worksheet in the workbook.

The only time this wouldn't work is if the first worksheet in your workbook is hidden. If the worksheet is not visible, then Excel automatically (after execution of this statement) displays the first visible worksheet.

Note that this displays the first (leftmost) worksheet tab in the workbook. If you instead want to display the first created worksheet in a workbook, regardless of its position, you can try a different approach. Each worksheet has (for lack of a better term) a behind-the-scenes "code name." These code names should sound familiar; they are Sheet1, Sheet2, Sheet3, etc. These names are retained even though you may change the name of the worksheet itself or change the position of the tabs. If you want to display the first worksheet created (again, regardless of position), you could try the following:

Sheet1.Activate

There is one caveat to this: It is possible that the code name for your worksheets has been changed, if you write the programming code to do so. If that is the case, then the above statement may not provide the results desired. (Testing is always a good idea.)

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 (12271) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Displaying the First Worksheet in a Macro.

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

Retrieving the Last Value in a Column

Need to get at the last value in a column, regardless of how many cells are used within that column? You can apply the ...

Discover More

Ignoring Words Containing Numbers

If your writing often contains words that include numbers, you'll want to make sure you set up the spelling checker to ...

Discover More

Understanding Default Tab Stops

Ever wonder how Word determines the default setting for each tab stop in your document? This article should satisfy any ...

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!

More ExcelTips (menu)

Workbook Events

You can create macros that run whenever Excel detects a certain event happening within an entire workbook. This tip ...

Discover More

Delimited Text-to-Columns in a Macro

The Text-to-Columns tool is an extremely powerful feature that allows you to divide data in a variety of ways. Excel even ...

Discover More

Saving Changes when Closing

If your macro closes workbooks, you'll want to make sure that it will save any changes you made to the workbook. Here's ...

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 6 - 0?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon 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.