Recover workbook's default settings

Stevenn

Active Member
Joined
Feb 8, 2012
Messages
259
I've adjusted many settings in my workbook, but I can't remember exactly what I've changed. Is there any way to recover the workbook's default settings?

My workbook has become more slow when I use it, but I can't see any big changes. Is it possible that some cells are 'in use' even though I can't see it and in that way use up memory? I am trying to speed up my workbook by disabling the status bar, disabling events, disabling ErrorCheckingOptions, using manual calculation etc. Do any of you have any other recommendations to speed up the workbook?

I've made a procedure to check if there exists any empty sheets. Can I check/delete anything else?

Code:
    For Each sheet In Worksheets
        With sheet
            If WorksheetFunction.CountA(.Cells) = 0 Then
                .Delete
            Else
                .DisplayPageBreaks = False
            End If
        End With
    Next
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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