How to rename multiple worksheets in Excel?
Normally to rename worksheets in Excel, we can quickly double click the sheet tab, or right click on the sheet tab to choose Rename command for renaming worksheets. That’s quite handy to rename one or two worksheets in Excel, but if we want to rename multiple worksheets within one operation, how can we do?
Using Rename command to rename worksheets
Good for Excel starters to rename one or two worksheets
Using VBA code for renaming multiple worksheets
Good for Excel advanced user to rename multiple worksheets, but it’s complicated
Using a handy tool to rename multiple worksheets comfortably
Good for all Excel users to quickly rename multiple worksheets, too easy!
Office Tab: Enable Tabbed Editing and Browsing in Office, Just Like Chrome, Firefox, IE 8/9/10. Read more...
Classic Menu for Office: Bring Classic Menus and Toolbars of Office 2003/XP/2000 Back to Office 2007, 2010 and 2013. Read more...
Using Rename command to rename worksheets
We can quickly rename worksheets in Excel with the Rename command according to the following procedures:
Step 1: Right click on the sheet tab you want to rename, and choose Rename command from the Right-click menu. Or double click on the sheet tab to rename the worksheet.
![]() |
![]() |
Step 2: Then type the new worksheet name.
Step 3: Press Enter Key to rename it. See screenshot:

With this Rename command, you can rename only one worksheet at a time, for the purpose of renaming multiple worksheets, please repeat the above operations.
Using VBA code for renaming multiple worksheets
Here I will introduce you two VBA codes to rename multiple worksheets.
1. VBA code to rename multiple worksheets by the name you want at once
Using the following VBA code, you can quickly rename all worksheets of the current workbook with the same prefix in their worksheet names, such as: KTE-order1, KTE-order 2, and KTE-order 3…
Step 1: Click on Developer > Visual Basic, and click Insert > Module in the Microsoft Visual Basic Application Windows.
Step 2: Please copy and paste the following code into the Module.
Sub ChangeWorkSheetName()
Dim WS As Worksheet
i = 1
On Error Resume Next
For Each WS In Worksheets
WS.Name = "KTE-order"&i
i = i + 1
Next
End Sub
Step 3: click
button to execute the code. It will rename all worksheets as KTE-order 1, KTE-order 2, KTE-order 3 … see screenshots:
![]() |
![]() |
NOTE: you can customize the worksheet name by changing WS.Name = "KTE-order". Just replace the KTE-order with the worksheet name you want to use.
2. VBA code to rename multiple worksheets by specific cell value in each worksheet of the active workbook
Using the following VBA code, it will rename all worksheets of current workbook by using the content of specific cell. For example, you can type the worksheet name in the A1 cell of the whole workbook, and then the worksheet will be renamed as the cell value A1.
Step 1: Please specify a cell to contain the worksheet name in each worksheet and type the worksheet name in it. In this example, I will type the worksheet name in cell A1 in every worksheet.
Step 2: Click Developer > Visual Basic, and click Insert > Module in the Microsoft Visual Basic Application Windows.
Step 3: Please copy and paste the following code into the Module.
Sub RenameTabs()
For i = 1 To Sheets.Count
If Worksheets(i).Range("A1").Value <> "" Then
Sheets(i).Name = Worksheets(i).Range("A1").Value
End If
Next
End Sub
Step 4: Click
button to execute the code. It will rename all worksheets by using the content of A1.
Notes: 1. You can change the Range (“A1”) to any other cell which contains the worksheet name.
2. If the specific cell has no content, then the worksheet of the specific cell will not be renamed.
Using a handy tool to rename multiple worksheets comfortably
The Rename Multiple Worksheets tool of Kutools for Excel is quite handy for renaming all worksheets or selected specific worksheets of current workbook.
With this tool, you can quickly rename all worksheets or selected specific worksheets by adding extra content before or after the existing worksheet name or replace the original sheet names with the new names. You can also rename all worksheets or selected worksheets by using the contents of a range cells.
1. Rename multiple worksheets with specific data by using Kutools for Excel
With this Rename Multiple Worksheets tool, you can easily rename the worksheets with a specific value which you can put it before or after the original worksheets name, also you can replace the original with the specific value. Do as follows:
Step 1: Click Enterprise > Worksheet Tools > Rename Multiple Worksheets. See screenshot:

Step 2: Specify the settings in Rename Multiple Worksheets dialog box. See screenshot:
![]() |
1. Select the worksheets you want to rename from the Worksheets list. |
| 2. Input the specific value into the From an input box. | |
| 3. select one type which you want to rename the worksheets under Rename Options. |
Step 3: And then click OK. You will get the following results:
![]() |
| Insert the specific value before original sheet name |
![]() |
| Insert the specific value after original sheet name |
![]() |
| Replace the original sheet name with the specific value |
![]() |
2. Rename multiple worksheets with cell values by using Kutools for Excel
If you have a range of cell values, and now you need to rename the worksheet name with the cell values, this utility also can help you quickly rename multiple worksheets with the specific cell values. Please do as this:
Step 1: Select the range of cell values that you want to use.
Step 2: Then apply this utility. And in the Rename Multiple Worksheets dialog box, specify the following settings:
| Select the worksheets you want to rename from the Worksheets list. |
| select one type which you want to rename the worksheets under Rename Options. |
![]() |
Step 3: And then click OK. You will get the following results:
| Insert the cell value before original sheet name |
![]() |
| Insert the cell value after original sheet name |
![]() |
| Replace the original sheet name with the cell value |
![]() |
Kutools for excel: with more than 120 handy Excel add-ins, free to try with no limitation in 30 days. Get it Now.
For more detailed information about Rename multiple worksheets, please visit Rename multiple worksheets feature description.



















