10 Tricks to Fix Slow Excel Spreadsheets (Speed-up Excel)

If there is one thing that unites us all, it has to be the frustration to keep up with a slow excel spreadsheets.

While the impact on the performance may be negligible when there is less data, it becomes more profound as you add more and more data/calculations to the workbook.

9 out of 10 times, an Excel user would complain about the slow Excel spreadsheets. And there is hardly anything you can do about it.

Well, that’s NOT completely true.

The way Excel has been made, it does get slow with large data sets. However, there are many speed-up tricks you can use to improve the performance of a slow Excel spreadsheet.

10 Tips to Handle Slow Excel Spreadsheets

Here are 10 tips to give your slow Excel spreadsheet a little speed boost, and save you some time and frustration (click to jump to that specific section).

  1. Avoid Volatile Functions (you must).
  2. Use Helper Columns.
  3. Avoid Array Formulas (if you can).
  4. Use Conditional Formatting with Caution.
  5. Use Excel Tables and Named Ranges.
  6. Convert Unused Formulas to Values.
  7. Keep All Referenced Data in One Sheet.
  8. Avoid Using Entire Row/Column in References.
  9. Use Manual Calculation Mode.
  10. Use Faster Formula Techniques.

1. Avoid Volatile Formulas

Volatile formulas are called so because of a reason. Functions such as NOW, TODAY, INDIRECT, RAND, OFFSET etc. recalculate every time there is a change in the workbook.

For example, if you use NOW function in a cell, every time there is a change in the worksheet, the formula would be recalculated and the cell value would update.

This takes additional processing speed and you end up with a slow excel workbook.

As a rule of thumb, avoid volatile formulas. And if you can’t, try and minimize its use.

2. Use Helper Columns

Helper columns are one of the most under-rated design constructs in Excel. I have seen many people shy away from creating helper columns.

DON’T DO That.

The biggest benefit of using ‘Helper Columns’ is that it may help you avoid array formulas.

Now don’t get me wrong. I am not against array formulas. Rather I believe these could be awesome in some situations. But it when you try to do it all with one long formula, it does impact the performance of your Excel workbook. A couple of array formulas here and there shouldn’t hurt, but in case you need to use it in many places, consider using helper columns.

Here are some Examples where helper columns are used:

3. Avoid Array Formulas

Array formulas have its own merits – but speed is not one of those.

As explained above, array formulas can take up a lot of data (cell references), analyze it, and give you the result. But doing that takes time.

If there is a way to avoid array formulas (such as using helper column), always take that road.

4. Use Conditional Formatting with Caution

I absolutely love conditional formatting. It makes bland data look so beautiful. Instead of doing the comparison yourself, now you can simply look at a cell’s color or icon and you’d know how it compares with others.

But.. here is the problem.

Not many Excel users know that Excel Conditional Formatting is volatile.

While you may not notice the difference with small data sets, it can result in a slow excel spreadsheet if applied on large data sets, or applied multiple times.

Word of advice – Use it Cautiously.

Also read: How to Remove Conditional Formatting in Excel (Shortcut + VBA)

5. Use Excel Tables and Named Ranges

Excel Table and Named Ranges are two amazing features that hold your data and makes referencing super easy. It may take a while to get used to it, but when you start using it, life becomes easy and fast.

In creating data-driven dashboards, it is almost always a good idea to convert your data into an Excel Table.

It also has an added advantage of making your formulas more comprehensible.

For example, what’s easier to understand?

=Sales Price-Cost Price OR =SUM(A1:A10)-SUM(G1:G10)

6. Convert Unused Formulas to Static Values

This is a no-brainer. When you don’t need it, don’t keep it.

Lots of formulas would result in a slow Excel workbook. And if you have formulas that are not even being used – you know who to blame. As a rule of thumb, if you don’t need formulas, it’s better to convert them into a static value (by pasting as values).

Read More: How to quickly convert formulas to values.

7. Keep All Referenced Data in One Sheet

This may not always be possible, but if you can do this, I guarantee your Excel sheet would become faster.

The logic is simple – formulas in your worksheet don’t have to go far to get the data when it is right next to it in the same sheet.

8. Avoid Using the Entire Row/Column as Reference (A:A)

The only reason I have this one on the list is that I see a lot of people using the entire row/column reference in formulas. This is a bad practice and should be avoided.

While you may think that the row/column only has a few cells with data, Excel doesn’t think that way. When you reference an entire row/column, Excel acts it as a good servant and check it anyways. That takes more time for calculations.

9. Use Manual Calculation Mode

I am just repeating what million people have already said in various forums and blogs. Using Manual calculation gives you the flexibility to tell excel when to calculate, rather than Excel taking its own decisions. This is not something that speeds up your Excel workbook, but if you have a slow Excel spreadsheet, it definitely saves time by not making Excel recalculate again and again.

  • To switch to manual mode, go to Formula Tab –> Calculation Options –> Manual (press F9 key to recalculate)

Slow Excel spreadsheets - Manual Calculation

10. Use Faster Formulas Techniques

Excel gives you a lot of formulas and formula-combos to do the same thing. It is best to identify and use the fastest ones.

Here are a couple of examples:

  • Use IFERROR instead of IF and ISERROR combo (unless you are using Excel 2003 or earlier, which does not have IFERROR).
  • Use MAX(A1,0) instead do IF(A1>0,A1,0) – This is a cool tip that I learned from Mr. Excel aka Bill Jelen. His research shows that MAX option is 40% faster than IF option (and I am ready to take this stat on his face value).
  • Use the INDEX/MATCH combo, instead of VLOOKUP – This may raise a lot of eyebrows, but the truth is, there is no way VLOOKUP can be faster if you have 100’s of columns of data. The world is moving towards INDEX/MATCH, and you should make the shift too.
    [If you are still confused about what to use, here is a head-on-head comparison of VLOOKUP Vs. INDEX/MATCH].
  • Use — (double negatives) to convert TRUE’s and FALSE’s to 1’s and 0’s (instead of multiplying it by 1 or adding 0 to it). The speed improvement is noticeable in large data sets.

Is this an exhaustive list? Absolutely NOT. These are some good ones that I think are worth sharing as a starting point. If you are looking to master Excel-Speed-Up techniques, there is some good work done by a lot of Excel experts.

Here are some sources you may find useful:

I am sure you also have many tips that can help tackle slow excel spreadsheets. Do share it with us here in the comment section.

I also have one request. The pain of working with a slow excel spreadsheet is something many of us experience on a daily basis. If you find these techniques useful. share it with others. Ease their pain, and earn some goodness 🙂

You May Also Like the Following Excel Links:

Excel Ebook Subscribe

FREE EXCEL BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster

Sumit Bansal
Hello there! I'm Sumit Bansal, founder of trumpexcel.com and an Excel MVP. I started this website in 2013 with a simple goal: to share my love for Excel through easy to follow tips, tutorials and videos. I'm here to help you get the best out of MS Excel to save time and boost your productivity.

30 thoughts on “10 Tricks to Fix Slow Excel Spreadsheets (Speed-up Excel)”

  1. I’ve noticed my Excel runs extremely slow when I have lots of formulae and am playing around with filters. Every change in filter results in formulae recalculating, which is unexpected because the filters are simply showing/hiding data and not changing contents. Is there a way to turn this off (other than switching to manual calc)

    Reply
  2. Sir, 24th Feb.2020.
    I must thankful to you find such useful notes.
    Hoping to receive such valuable notes in future too.

    Kanhaiyalal Newaskar.

    Reply
  3. Those are all great suggestions. To help know what parts of your spreadsheet are slow you can also download this add-in to help you measure how long it takes to calculate your spreadsheet.

    Reply
  4. That was very helpful content, but i will add something to it.
    if you use IFERROR instead of IF the problem it will cause is, Iferror first evaluate the value which is formula and if it cause an error then it evaluate the false argument which is waste of resources and time.

    Reply
  5. So in other words, don’t use Excel! You just wiped out most of the most convenient tools. I love Excel but they didn’t think this through, I say so as an Electronics Engineer (both s/w & h/w).

    Reply
  6. i had a super slow (but <1MB) file and i could not figure out why…. it was #8! completely fixed it when i got rid of entire column references on one of the sheets.
    T-Y!

    Reply
  7. The Formula shown above was really helpful for me learn Excel. Everest offers Microsoft Excel Tutorials: Our administrations are Microsoft Excel Training, Online Excel Training,Excel Courses, Excel Classes, Learn Excel.

    Reply
  8. Hi Sumit
    Thanks for the list. I agree to most of your points. But especially no. 8 doesn’t make a difference (at least not any more). Also the effect of most of the points under no. 10 are very small (VLOOKUP vs. INDEX/MATCH for instance).
    I measured the difference in calculation time: There seem to be other factors even more relevant. The whole study is linked here: http://professor-excel.com/performance-excel-study/

    Reply
    • No.8 makes a massive difference and has thankfully stopped all of my company’s large sheets repeatedly hanging and then crashing excel.

      Reply
  9. Hallo Mr. Sumit. Its really helpful but how its possible in match/index function to avoid selection of whole column and row when data will be aded in next time. As it is not possible to change formula anytime.

    Reply
  10. Useful but this seems aimed at “its the users fault”, which might be true for people using particular worksheets. Its not aimed at a problem where EVERY worksheet has slow entry, which is usually do to poor or hostile software development by Microsoft and requires monkeying with kernel settings and disabling features like network and help settings, product activation etc, and generally other garbage M$ and NSA uses for its various protectionist schemes and to spy illegally on its users.

    Reply
    • Thanks for commenting Selcuk.. It’s interesting what you have shared here. Definitely, there are a lot of systemic issues that are practically user independent and makes the workbook slow. I really hope MS will come up with more powerful Excel that can handle large data sets and still be fast.

      Reply
      • Thanks. Yes basically i7 processors and GHz speeds, our computers software should have lightning fast with data entry, saves, folder transfers, etc…todays computers have real processing power of the supercomputers of yesteryear…yet somehow they don’t. Why? Well, the reason is simple…M$ maximizes this extra power for its own purposes, rather than the users, which on the scale it is doing it, is basically theft on a scale much larger than so-called software pirates which is all you hear about in the media. The real pirates (of our CPU cycles and zombified computers) is M$ itself and whatever third party they are acquiescing to (RIAA,NSA,etc). The practice should be considered illegal by any reasonable definition of the law, however M$ just cowardly hides behind proprietary kernel code and encrypted data transfers to Redmond and elsewhere. Recently, I found M$ downloading 3GB of Winn10 software onto my personal computer. Did they pay for the bandwidth…no..did they let me know they were doing this illegal thing…no. They even place it in a hidden protected file. Its a huge waste of economic productivity, which depends so critically on computers today. Things are so rotten at M$, the governement really should consider breaking them up. All those talented software engineers just producing one garbage product after another because all the brass cares about is money and ruining the competition by its resting on its laurels with patent thickets and protectionism rather than concentrating on making a better product.

        Reply
          • There is no time to chill. I’ve literally spent “years” of wasted time and so have many others working with Microsofts user hostile software which waste and steal the users purchased hardware for its own purposes. The cost to our economy is far more than their market share. The company should be dismantled for everyones benefit, as the antitrust judges orderered over a decade ago. Its long overdue.

          • You are off your rocker.
            Move to Open or Libre Office, then you may find peace and tranquility in knowing it is not Microsoft taking your sanity…

  11. Hi Sumit

    In regards to #8, I recently learned that whole column/row references are ok for some of the functions. Some of the functions like SUM or SUMIF will automatically recognize the last used row/column. The following Microsoft article explains this in more detail.

    http://msdn.microsoft.com/en-us/library/ff726673(v=office.14).aspx

    I still agree with your suggestion though. As a best practice I still don’t recommend referencing whole rows/columns because I am not exactly sure how the function determines the “last used row/column”. As we know with VBA, this can sometimes be misleading. The last used row/column could be much farther down on the sheet if data has been deleted. And this means the function could be including unused rows/columns in the calculation.

    However, I think it’s good to know that some of the functions do consider this. I will have to see if there is a full list of the functions that do recognize the last used row/column.

    Thanks for the great tips!

    Reply
    • Jon – That’s good learning for me too.. Thanks for sharing 🙂
      You are right, its good to know of formulas that can handle this

      Reply
    • I’m right there with Jon on #8. I always use whole column/row references with Vlookups and SumIfs. This ensures that if my data range changes, my formulas are guaranteed to pick up the added data. I have run into too many headaches with formulas not picking up all the data (especially with repetitive data extractions). But NEVER use entire column/row references with SumProduct!!! I found out the hard way this that function 🙁

      Reply
  12. Hi Sumit

    As you’ve stated this list is not exhaustive, but it is a very good start. Microsoft has several very good articles about performance optimization and calculation speed (written by the team at Decision Models) that are worth reading.
    Having said that, I think this article could be improved with some explanation as to WHY each of these ideas make a difference to speed. For example:
    1. Helper columns (and rows) >> breaks up formulae that can save recalculation due to the way Excel builds the ‘calculation tree’.
    2. Array formulae >> typically reference large ranges of cells and therefore need to evaluate each one, when this can be avoided with a different choice of formula.
    3. Volatile functions >> by definition must be recalculated each, but the real issue is related to where they appear in the calculation tree. If at the bottom then no big deal, but if right at the top, then very dependent formula must also be recalculated. (See the Decision Models website for discussion about this.)
    7. It’s not clear what you mean by this one.
    8. Whole columns/rows >> Ditto re calculation tree issue.
    Regards

    Reply
    • Thanks Colin.. Very Insightful.. Calculation Tree is indeed one of the biggest reasons that determines excel speed
      #7 – The idea is to keep all the data in one sheet, so it is easier to reference in formulas (instead of having it dispersed in various sheets). Based on my experience in excel dash boarding, it is faster this way

      Reply

Leave a Comment

Free-Excel-Tips-EBook-Sumit-Bansal-1.png

FREE EXCEL E-BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster

Free-Excel-Tips-EBook-Sumit-Bansal-1.png

FREE EXCEL E-BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster

Free Excel Tips EBook Sumit Bansal

FREE EXCEL E-BOOK

Get 51 Excel Tips Ebook to skyrocket your productivity and get work done faster