How to create a list of all worksheet names from a workbook?
Imagine you have a workbook with multiple worksheets and want to list all the sheet names automatically, complete with clickable hyperlinks to navigate to each corresponding sheet. This tutorial offers quick and effective methods for generating a list of worksheet names in Excel.
Get a list of all worksheet names from a workbook dynamically with formulas
Get a list of all worksheet names from a workbook with a useful feature
Get a list of all worksheet names from a workbook with VBA code
Get a list of all worksheet names from a workbook dynamically with formulas
In Excel, you can define a range name, and then apply a formula to list all sheet names from current workbook, please do with following steps:
1. Go to click Formula > Name Manager, see screenshot:
2. In the Name Manager dialog box, click New button, see screenshot:
3. In the popped out New Name dialog, specify a name into the Name text box, and then copy the below formula into the Refers to text box, see screenshot:
=GET.WORKBOOK(1)&T(NOW())
4. Then click OK > Close to close the dialog boxes, now, please go to a sheet where you want to list all the sheet names, and then enter the following formula into a blank cell:
=IFERROR(INDEX(MID(Sheetnames,FIND("]",Sheetnames)+1,255),ROWS($A$2:A2)),"")
Note: In the above formula, Sheetnames is the range name you are crested in step 3.
5. And then drag the fill handle down to the cells when blank cells are displayed, and now, all sheet names of current workbook have been listed as below screenshot shown:
6. If you want to create the hyperlink for each sheet, please use the below formula:
=HYPERLINK("#'"&A2&"'!A1","Go To Sheet")
Note: In the above formula, A2 is the cell that contains the sheet name, and A1 is the cell where you want the active cell to be located. For example, if you click the hyperlink text, it will locate the cell A1 of the sheet.
7. Now, when you click the hyperlink text, it will take you to that sheet, see below demo:
- 1. With the above formulas, the created sheet names are listed dynamically, when you change the sheet name in the workbook, the index sheet name will be updated automatically.
- 2. Save the file as an Excel Macro-Enabled Workbook to ensure the formulas work after the file is closed and reopened.
Get a list of all worksheet names from a workbook with a useful feature
With the Create List of Sheet Names utility of the third party add-in Kutools for Excel, you are able to create a list of worksheet names in one click, and link to each worksheet with hyperlink.
1. Click Kutools Plus > Worksheet > Create List of Sheet Names, see screenshot:
2. In the Create List of Sheet Names dialog box, please specify the following settings:
(1.) Choose sheet index styles you like, you can create the worksheet names with hyperlinks or with macro buttons. (2.) Enter the worksheet names for sheet index. (3.) Specify the location of the worksheet index. (4.) Specify how much columns you want to use in the new worksheet to display the worksheet names. |
3. After finishing the settings, then click OK. All of the worksheet names have been listed with links in a new worksheet of the current workbook. See screenshot:
worksheet names with hyperlinks | worksheet names with macro buttons |
Kutools for Excel - Supercharge Excel with over 300 essential tools. Enjoy permanently free AI features! Get It Now
Get a list of all worksheet names from a workbook with VBA code
1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.
2. Click Insert > Module, and paste the following macro in the Module Window.
VBA: List all worksheet names with hyperlinks in a new worksheet:
Sub CreateIndex()
'updateby Extendoffice
Dim xAlerts As Boolean
Dim I As Long
Dim xShtIndex As Worksheet
Dim xSht As Variant
xAlerts = Application.DisplayAlerts
Application.DisplayAlerts = False
On Error Resume Next
Sheets("Index").Delete
On Error GoTo 0
Set xShtIndex = Sheets.Add(Sheets(1))
xShtIndex.Name = "Index"
I = 1
Cells(1, 1).Value = "INDEX"
For Each xSht In ThisWorkbook.Sheets
If xSht.Name <> "Index" Then
I = I + 1
xShtIndex.Hyperlinks.Add Cells(I, 1), "", "'" & xSht.Name & "'!A1", , xSht.Name
End If
Next
Application.DisplayAlerts = xAlerts
End Sub
3. Press the F5 key to run this macro. All worksheet names from the active workbook are now listed in a new worksheet named "Index," with hyperlinks that navigate to each respective sheet. See the screenshot below:
Related articles
List All Filenames In A Folder And Create Hyperlinks For Them
For your daily work, you may need to import multiple filenames from a folder to a worksheet, and create hyperlinks for each files so that open the file quickly and easily. Maybe, you can copy and paste the filenames and create a hyperlink for it one by one manually, but, this will waste much time if there are hundreds files in the folder.
Copy Or Move Files From One Folder To Another Based On A List
If you have a list of file names in a column in a worksheet, and the files locate in a folder in your computor. But, now, you need to move or copy these files which names are listed into the worksheet from their original folder to another one as following screenshot shown. How could you finish this task as quickly as you can in Excel?
Get List Of Sheet Names In Google Sheets
This article, I will introduce some methods to get the name of current sheet name or a list of sheet names in Google sheets.
Navigate Between Worksheets By Using Drop Down List
Supposing, you have a workbook which contains multiple worksheets, now, you need to create a drop down list or combo box which lists all sheet names and when you select one sheet name from the drop down list, it will jump to that sheet immediately. This article, I will introduce how to navigate between worksheets by using a drop down list in Excel.
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!