Hi,
It sounds like you're experiencing issues with Excel formulas not updating properly, it seems your Workbook is set to manual calculation option, I suggest you go to Formulas tab- check Calculation Options ensure that the calculation mode is set to Automatic.
If you select the Automatic option, you can try to run a simple script to help you change the Calculation option to Automatic for all Workbooks:
- Press Alt + F11 to open the VBA editor.
- Go to Insert > Module to create a new module.
- Copy and paste the script into the module.
Sub SetCalculationModeToAutomatic() Application.Calculation = xlCalculationAutomatic End Sub
- Press F5 to run the script.
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.