Worksheets.Add(Object, Object, Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public object Add (object Before, object After, object Count, object Type);
Public Function Add (Optional Before As Object, Optional After As Object, Optional Count As Object, Optional Type As Object) As Object
Parameters
- Before
- Object
Optional Object. An object that specifies the sheet before which the new sheet is added.
- After
- Object
Optional Object. An object that specifies the sheet after which the new sheet is added.
- Count
- Object
Optional Object. The number of sheets to be added. The default value is one.
- Type
- Object
Optional Object. Specifies the sheet type. Can be one of the following XlSheetType constants: xlWorksheet, xlChart, xlExcel4MacroSheet, or xlExcel4IntlMacroSheet. If you are inserting a sheet based on an existing template, specify the path to the template. The default value is xlWorksheet.
Returns
Remarks
If Before
and After
are both omitted, the new sheet is inserted before the active sheet.