Reset VBA Scripting to Default

talltai

New Member
Joined
Jul 28, 2017
Messages
4
Apparently, I ran a macro that impacted my library and in doing so I can no longer do basic excel formulas. For example, when I do a copy and paste from A1 across columns B:I to return the associated values on another page it simply repeats the result listed in cell A1. A look into the formula of each cell shows the proper formula but what is visible as the result is what was in cell A1.

How do I restore my libraries or whatever else to the factory version to clear whatever i did. I work for a corporation so I am unable to function as an adminstrator.
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Welcome to the forums!

Open the VBA Editor (alt+F11) and go to the "Immediate" Pane. If you don't see this, press CTRL+G to open it.

In the immediate pane, enter the following lines, pressing enter after each line

Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic

It sounds like your calculations are turned off, but this should cover the bases.
 
Last edited:
Upvote 0
Hi
Sounds like Calculation has been set to manual
Goto Tools>Options>Calulation and then select Automatic
 
Upvote 0
Glad WE could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,575
Messages
6,125,628
Members
449,240
Latest member
lynnfromHGT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top