Skip to content

Latest commit

 

History

History
41 lines (19 loc) · 620 Bytes

c54b75d0-79dd-3e14-0669-447e740e134b.md

File metadata and controls

41 lines (19 loc) · 620 Bytes

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

See also

Concepts

Worksheet Object

Other resources

Worksheet Object Members