Insert an Excel worksheet as the first sheet

How to insert a single Excel worksheet as the first sheet using Excel, VBA and Shortcut methods

METHOD 1. Insert an Excel worksheet as the first sheet using the sheet option

EXCEL

Right-click on the first sheet > Insert > Worksheet > OK

1. Right-click on the first sheet.
2. Click Insert.
Right-click on the first sheet and select Insert - Excel

3. Select Worksheet and click OK. Select Worksheet and click OK - Excel

METHOD 2. Insert an Excel worksheet as the first sheet using the ribbon option

EXCEL

Select the first sheet > Home tab > Cells group > Insert > Insert Sheet

1. Select the first sheet. Select the first sheet - Excel

2. Select the Home tab. Select Home tab - Excel

3. Click Insert in the Cells group.
4. Click Insert Sheet.
Click Insert and click Insert Sheet - Excel

METHOD 1. Insert an Excel worksheet as the first sheet using VBA

VBA

Sub Insert_Worksheet_as_First_Sheet()
'insert a new worksheet as the first sheet
Worksheets.Add Before:=Sheets(1)

End Sub

ADDITIONAL NOTES
Note 1: The 1 in Worksheets(1) represents the first worksheet in a workbook.

METHOD 2. Insert an Excel worksheet as the first worksheet using VBA

VBA

Sub Insert_Worksheet_as_First_Worksheet()
'insert a new worksheet as the first worksheet
Worksheets.Add Before:=Worksheets(1)

End Sub

PREREQUISITES
Minimum Number of Worksheets: The workbook must have at least one worksheet. Given a workbook can comprise either or both worksheets and/or chart sheets, and the VBA code is to insert a new worksheet in front of the first worksheet there must be at least one worksheet that the VBA code can refer to and insert a new worksheet in front of it. If a workbook comprises only chart sheets the VBA code will return an error stating "Subscript out of range".
ADDITIONAL NOTES
Note 1: The 1 in Worksheets(1) represents the first worksheet in a workbook.

METHOD 3. Insert an Excel worksheet as the first chart sheet using VBA

VBA

Sub Insert_Worksheet_as_First_Chart_Sheet()
'insert a new worksheet as the first chart sheet
Worksheets.Add Before:=Charts(1)

End Sub

PREREQUISITES
Minimum Number of Chart Sheets: The workbook must have at least one chart sheet. Given a workbook can comprise either or both worksheets and/or chart sheets, and the VBA code is to insert a new worksheet in front of the first chart sheet there must be at least one chart sheet that the VBA code can refer to and insert a new worksheet in front of it. If a workbook comprises only worksheets the VBA code will return an error stating "Subscript out of range".
ADDITIONAL NOTES
Note 1: The 1 in Charts(1) represents the first chart sheet in a workbook.

Insert a worksheet as the first sheet using a Shortcut

SHORTCUT

WINDOWS SHORTCUT

Shift
F11

NOTES
To insert a worksheet as the first sheet using this shortcut you will need to have the first sheet selected when actioning this shortcut, given the shortcut inserts a new worksheet in front of an active sheet. If you have a combination of worksheets and chart sheets and only want to insert a new worksheet in front of a worksheet or a chart sheet using this shortcut, then you need to select the first worksheet or chart sheet and action the shortcut.

Explanation about how to insert a worksheet as the first sheet

EXPLANATION

EXPLANATION
This tutorial explains and provides step by step instructions on how to insert a worksheet as the first sheet using Excel, VBA and Shortcut methods.

Excel Methods: This tutorial provides two Excel methods that can be applied to insert a worksheet as the first sheet. The first method uses the sheet option and can be accomplished in three steps. The second method uses the ribbon option and can be accomplished in four steps.

VBA Methods: Using VBA you can insert a worksheet as the first sheet, worksheet or chart sheet by referencing to a Sheets, Worksheets or Charts object, respectively. If you intend to insert a worksheet as the first worksheet or a chart sheet you will need to have at least one worksheet or chart sheet, respectively, in a workbook.

Shortcut Method: Using the Shortcut in this tutorial you can insert a worksheet as the first worksheet or chart sheet, by having selected the first worksheet or chart sheet, respectively, and actioning the shortcut.

RELATED TOPICS

Related Topic Description Related Topic and Description
How to insert multiple Excel worksheets at the same time using Excel, VBA and Shortcut methods
How to insert a single Excel worksheet using Excel, VBA and Shortcut methods
How to insert a single Excel worksheet as the last sheet using Excel and VBA methods
How to insert a single Excel worksheet after a specific sheet using Excel, VBA and Shortcut methods
How to insert a single Excel worksheet before a specific sheet using Excel, VBA and Shortcut methods