Excel Sheet Super Slow

leilanip

New Member
Joined
Oct 18, 2022
Messages
9
Office Version
  1. 365
Platform
  1. Windows
Help! I have a work spreadsheet which uses a lot of formulas to auto-populate payroll categories based on job codes. The problem I am having is that for the last two weeks the sheet if running super slow. I have tried to go back to a previous sheet, same issue. I have removed all volatile formulas, small improvement but not much. I can't make any of the formulas static as I use them all. There are roughly 2200 formulas. They are mostly nested if formulas.

Is my sheet slow due to the number of formulas? What can I do to speed it up? Could it be corrupt and if so how do I fix it? Thank you in advance.
 
It looks to me like your conditional formatting is just killing your spreadsheet.
This is made even worse by the fact that some of the formatting is being applied to all 1m rows.

You can get the spreadsheet to hang just by going into conditional formatting and changing the drop down box from Current Selection to This Workbook.
 
Upvote 0

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Now it just keeps crashing but I can use it on onedrive online and it's ok.
 
Upvote 0
It looks to me like your conditional formatting is just killing your spreadsheet.
This is made even worse by the fact that some of the formatting is being applied to all 1m rows.

You can get the spreadsheet to hang just by going into conditional formatting and changing the drop down box from Current Selection to This Workbook.
Ok I'll see what I can do to remove conditional formatting. Thank you. I hadn't even considered that.
 
Upvote 0
Ok I'll see what I can do to remove conditional formatting. Thank you. I hadn't even considered that.
Even getting rid of your conditional formatting proved challenging with the sheet constantly hanging.

If you want to test it out the below will take 2.5-3mins to delete all the conditional formatting.
You will find that your spreadsheet will immediately be much more responsive.

VBA Code:
Sub RemoveCondFormat()

    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    
    ActiveSheet.Cells.FormatConditions.Delete
    
    Application.Calculation = xlCalculationAutomatic
    Application.ScreenUpdating = True
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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