Hi,
If you open an Excel file and set the calculation mode to Automatic, then open another Excel file that has been saved in Manual mode, it will NOT change to Automatic mode. Conversely, if you open an Excel file that has been saved in Manual mode, then open another Excel file saved in Automatic mode, it will CHANGE to Manual mode.
As a workaround, you can create a Personal.xlsb on: UserName\AppData\Roaming\microsoft\excel\Xlstart folder
When you saved the file "Personal.xlsb" in the Xlstart Folder, open an Excel file and press ALT+F11
On the left side, open the VBAProject(Personal.xlsb) and double click on ThisWorkbook and paste this code:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationAutomatic
End Sub
Then save it and restart Excel.
Just checking in to see if the information was helpful. Please let us know if you would like further assistance.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.