Written by Allen Wyatt (last updated November 24, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003
If you have a very large number of worksheets in a workbook, you might want to retrieve the names of those worksheets and put then on their own worksheet. For instance, you may want them in one place so you can use them in a table of contents or in some other fashion. The following macro, GetSheets, will quickly retrieve the names of the worksheets in the current workbook and put them in the first column of the current workbook, beginning at cell A1.
Sub GetSheets() Dim J As Integer Dim NumSheets As Integer NumSheets = Sheets.Count For J = 1 To NumSheets Cells(J, 1) = Sheets(J).Name Next J End Sub
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2274) 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: Retrieving Worksheet Names.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!
If your workbook contains a multitude of worksheets, the worksheet tabs at the bottom of the program window start to ...
Discover MoreDo you need your worksheet tabs to be taller than what they are? You can't make the adjustment in Excel, but you can make ...
Discover MoreNeed to set up a workbook that includes a worksheet for each week of the year? Here's a couple of quick macros that can ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments