Create a new Excel workbook

How to create a new excel file (workbook) using Excel, VBA and Shortcut methods

METHOD 1. Create a new Excel workbook using the ribbon option

EXCEL

File tab > New > Click on Blank workbook

1. Select the File tab. Select File tab

2. Click New. Select New

3. Click on Blank workbook. Click on Blank workbook

METHOD 1. Create a new Excel workbook using VBA

VBA

Sub Create_New_Workbook()
'create a new excel workbook
Workbooks.Add

End Sub

Create a new Excel workbook

SHORTCUT

WINDOWS SHORTCUT

Ctrl
N

NOTES
The shortcut will create a new Excel file (workbook).

Explanation about how to create a new workbook

EXPLANATION

EXPLANATION
This tutorial explains and provides step by step instructions on how to create a new Excel workbook using Excel, VBA and Shortcut methods.

Excel Method: This tutorial provides one Excel method that can be applied to create a new Excel workbook. The method shows how to access the blank workbook function through the File tab, which is a three step process.

VBA Method: This tutorial provides one VBA method that can be applied to create a new Excel workbook.

Shortcut Method: The Shortcut in this tutorial will instantly create a new Excel file (workbook).

RELATED TOPICS

Related Topic Description Related Topic and Description
How to open a single workbook using Excel, VBA and Shortcut methods
How to close a single workbook using Excel, VBA and Shortcut methods
How to save a workbook using Excel, VBA and Shortcut methods
How to open a single workbook as Read-Only using Excel and VBA methods
How to save and close a workbook using VBA