How to quickly create multiple sheets with same format in Excel?
For example, you have created a sheet with a specific formatting, and now you want to create multiple sheets with the same format as this sheet, how could you quickly solve this task in Excel? This tutorial is talking about methods to create multiple sheets with same format.
Create sheets with same format by Move or Copy
Create sheets with same format by VBA
Create sheets with same format by Copy Multiple Worksheets of Kutools for Excel
Create sheets with same format by Move or Copy
In Excel, you can use the Move or Copy command to create a sheet with same format as the sheet you select.
1. Click at the sheet which is with the format you need on the Sheet Tab bar, and right click to select Move or Copy from the context menu. See screenshot:
2. Then in the popping dialog, check Create a copy option. See screenshot:
3. Click OK. A new sheet is created with same format in the front of the selected sheet. See screenshot:
Note:
(1) You also can click Home > Format > Move or Copy Sheet to enable the Move or Copy dialog.
(2) With this method will be time-consuming when you need to create hundreds of sheets with same format.
Create sheets with same format by VBA
There is a VBA code can help you quickly create multiple sheets with same format at once.
1. Press Alt + F11 keys to open Microsoft Visual Basic for Applications window, then click Insert > Module, copy and paste below code to the Module window.
VBA: Create sheets with same format.
Sub CopyWorkSheets()
'Updateby20150526
Dim xNumber As Integer
Dim xWsName As String
On Error Resume Next
xTitleId = "KutoolsforExcel"
xWsName = Application.InputBox("Copy worksheet name", xTitleId, , Type:=2)
xNumber = Application.InputBox("Copy number", xTitleId, , Type:=1)
For i = 1 To xNumber
Application.ActiveWorkbook.Sheets(xWsName).Copy _
After:=Application.ActiveWorkbook.Sheets(xWsName)
Next
End Sub
2. Press F5 key to run the VBA code, then a dialog pops out for you to type the worksheet name you need to copy its format.
3. Click OK, and specify the number of copies you need into another popping dialog. See screenshot:
4. Click OK. Then there are six copies of worksheets with the same format created.
Create sheets with same format by Copy Multiple Worksheets of Kutools for Excel
If you do not like to use VBA, here I introduce you a handy tool – Kutools for Excel, you can use its Copy Worksheets utility to quickly and easily create sheets with same format.
Kutools for Excel, with more than 300 handy functions, makes your jobs more easier. | ||
After free installing Kutools for Excel, please do as below:
1. Click Kutools Plus > Worksheet > Copy Worksheets. See screenshot:
2. In the Copy Multiple Worksheets dialog, do as below:
(1) Check the worksheet name you want to copy its format from the list box of Copy the selected worksheets;
(2) Specify the number of the copies;
(3) Specify the place you want to put the copies.
3. Click Ok, a dialog pops out to remind you the copies are successfully created. Click OK to close it.
Now you can see the specified number of sheets have been created with same format.
Click here to know more details about Copy Multiple Worksheets
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office / Excel 2007-2021 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

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!











