Excel saves backup despite settings

starl

Administrator
Joined
Aug 16, 2002
Messages
6,081
Office Version
  1. 365
Platform
  1. Windows
Have a workbook that occasionally locks up Excel requiring Excel to be force-closed (lock up is a separate issue, don't worry about it). We've checked the box to Disable AutoRecover for that workbook, yet when Excel is reopened, there is at least 1 copy of the workbook listed in the left sidebar. Opening any of those workbooks causes Excel to lock up again, hence checking the disable box.
Why are recovery workbooks still being made? We don't want to completely disable autorecovery - just for that one workbook.
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
The following are a few things that should hopefully help, I have never experienced this exact issue but I have found Excel Workbooks sometimes make changes on their own whilst trying to be "helpful".

:cautious::mad:

Option #1
Create a copy of the workbook and then on this copy turn on Auto Recover and then save \ close Excel and then open and turn it off again.

Option #2
Using the following VBA code should ensure it is always turned off when the document is opened.

VBA Code:
Private Sub Workbook_Open()
    ' Turn off AutoRecover for the active workbook
    ThisWorkbook.AutoRecover.Enabled = False
End Sub

Good Luck!

t0ny84
 
Upvote 0

Forum statistics

Threads
1,215,136
Messages
6,123,243
Members
449,093
Latest member
Vincent Khandagale

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