Worksheet.Calculate event (Excel)

Occurs after the worksheet is recalculated for the Worksheet object.

Syntax

expression.Calculate

expression A variable that represents a Worksheet object.

Return value

Nothing

Example

This example adjusts the size of columns A through F whenever the worksheet is recalculated.

Private Sub Worksheet_Calculate() 
 Columns("A:F").AutoFit 
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.