Worksheet.Deactivate event (Excel)
Occurs when the chart, worksheet, or workbook is deactivated.
Syntax
expression.Deactivate
expression A variable that represents a Worksheet object.
Return value
Nothing
Example
This example arranges all open windows when the workbook is deactivated.
Private Sub Workbook_Deactivate()
Application.Windows.Arrange xlArrangeStyleTiled
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.