Add a New WorkSheet in Excel – VBA Macro Code
This VBA code will add a new worksheet in your Excel project.
|
1 2 3 4 5 6 |
Sub AddNewWorksheet() Dim NewWorkSheet As Worksheet Set NewWorkSheet = Sheets.Add End Sub |
Posted by Excel Instructor:
http://www.houstoncomputerclasses.com/excel-classes/

