MACRO TO SET THE AUTOMATIC CALCULATION

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking for a workbook macro that will make sure the workbook is always
opened with automatic calculation option set.
Thanks.
 
In Workbook code enter:

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top