MACRO TO SET THE AUTOMATIC CALCULATION

O

OB

I am looking for a workbook macro that will make sure the workbook is always
opened with automatic calculation option set.
Thanks.
 
G

Gary''s Student

In Workbook code enter:

Private Sub Workbook_Open()
Application.Calculation = xlAutomatic
End Sub
 
Top