Application.WorkbookNewSheet event (Excel)
Occurs when a new sheet is created in any open workbook.
Syntax
expression.WorkbookNewSheet (Wb, Sh)
expression A variable that represents an Application object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Wb | Required | Workbook | The workbook. |
Sh | Required | Object | The new sheet. |
Return value
Nothing
Example
This example moves the new sheet to the end of the workbook.
Private Sub App_WorkbookNewSheet(ByVal Wb As Workbook, _
ByVal Sh As Object)
Sh.Move After:=Wb.Sheets(Wb.Sheets.Count)
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.