Excel formulas acting slow? Today lets talk about optimizing & speeding up Excel formulas. Use these tips & ideas to super-charge your sluggish workbook. Use the best practices & formula guidelines described in this post to optimize your complex worksheet models & make them faster.

10 Tips to Optimize & Speed up Excel Formulas
1. Use tables to hold the data

Starting Excel 2007 you can keep all the related data in a table. For example call center data in our recent dashboard is kept in a table. Tables can be used in formulas with structural references, can be used as a source for pivot tables etc. And since tables grow & shrink as you add / remove data, none of your formulas need to be dynamic. As an example, if you have table called cs, then the formula sum(cs[column_name]) refers to sum of all values in the column_name of table cs. Even if you add more data to CS, the formula still works.
Resources to learn about Excel Tables:
- Introduction to Excel Tables – what are they and how to use them?
- Example: Customer Service Dashboard – Data & Calculations
2. Use named ranges, named formulas
By using names and named formulas, you can simplify your spreadsheet. Not only that, since named ranges & named formulas can hold arrays (ie lists of values), you can hold intermediate results or values that you need to refer many times in these named formulas. This will reduce the formula overhead and makes your workbooks faster.
Resources to learn about named ranges & named formulas:
- Excel School Program: In this comprehensive course, I talk about how to think about and write better formulas for data analysis work.
- Musings on Live Calendar [Excel Hero]
- Examples of Named Formulas – 2023 Calendar in Excel
3. Use Dynamic Arrays & Spill Ranges
Introduced in Excel 365, Dynamic Arrays allow us to build complex calculations with ease. I suggest incorporating new functions like:
- FILTER to fetch a list of values that meet one or more criteria.
- SORT to sort the values
- UNIQUE to eliminate duplicate values on the fly
- XLOOKUP to perform various lookups
- VSTACK / HSTACK to combine datasets
- TOCOL / TOROW to convert tables of data to single row or column formats
- # or Spill operator to manage spill ranges
Learn more about Dynamic Array functions here:
- Dynamic Array Functions – A deep introduction
- Dynamic Array Functions – how to use them [Video]
- How to use XLOOKUP
4. Use Pivot Tables
Many times, even when we do not need formulas we use them, because we can. Pivot tables are an excellent way to calculate a lot of summary values with few clicks. Once the pivot is built, you can refer to the pivot values with GETPIVOTDATA or simple cell references. This will reduce a lot of unnecessary calculations. If you are changing the data, you can just go to DATA ribbon and refresh all pivots in one go. This process works smoothly when you use tables to hold the data.
One of the reasons for slow workbooks is lot of data. Since, pivot tables are designed to work with lots of data, by using them, you can speed up your workbooks.
Resources to learn Pivot Tables:
5. Sort your data
One of the reasons for sluggish performance is that you are searching for something in a lot of un-sorted data. You are making Excel look for a needle in a hay-stack. Many times we inherit un-sorted data thru data imports. By sorting the data & using correct operators in lookup formulas, we can instantly speedup a sluggish workbook. If you feel that sorting the data is a pain, you can even automate it with Power Query or a sort procedure (thru a simple VBA macro).
Examples on Sorting:
- Remove duplicates & sort a list using Pivot Tables
- Use Power Query to pre-sort the data you are working with
6. Use Manual Calculation Mode
Speed is the hefty price you pay for complexity. But many times, we want our Excel workbooks to be complex, because only then they would reflect real world. In such cases, you can set formula calculations to manual mode.

Just press F9 whenever you want to run the formulas. Please note that Excel runs formulas whenever you save the file too.
7. Use Non-volatile formulas
There are a class of formulas in excel called as volatile formulas. These formulas are re-calculated whenever there is a change in the workbook. Examples of volatile formulas are RAND, NOW, TODAY, OFFSET etc. So when your worksheet has a lot of volatile formulas, any time you make a change all these formulas must be re-calculated. Thus, your worksheet becomes slow.
Solution? Simple, do not use volatile formulas. For example, instead of using OFFSET to construct a dynamic range, you can use INDEX. Since INDEX is non-volatile, it tends to be faster. Or better still, use a table.
Resources to learn more:
8. Keep formulas in a separate sheet
Formulas are the driving force behind any Excel workbook or model. By keeping all them in a separate worksheet(s), you minimize the chance of mistakes, omissions or repetitions. Debugging or investigating slow performance becomes an easy task when all formulas are in same place. I usually keep all the formulas in one sheet whenever I am designing a dashboard or complex workbook. This structure also helps me in thinking thru various calculations and planning the formulas in a structured way.
9. Write better formulas
Here are some guidelines that I follow when writing formulas.
- Built-in formulas tend to better than your own version – for example SUMIFS is easier to write and just as fast as SUMPRODUCT.
- Do not refer to entire column when you need just a few values. Do not write SUM(A:A), when you know values are only in A1:A10.
- IFERROR instead of lengthy IF(ISERROR formulas. Use IFERROR to simplify your error checking.
- Remove or Fix formula errors [how to, findout why formulas are not working]
- Use newer Dynamic Array formulas instead of old clunky array formulas
- Remove or Reduce references to other workbooks. Use Power Query instead.
- Remove any named ranges that result in error or missing links.
- Try to come up with alternative formulas: this not only sharpens your mind, but lets you discover better solutions.
- Do not calculate something if you do not need it.
- Do not calculate same thing twice. Use the first result second time too. Use LET for accomplishing this.
Resources to write better formulas:
- Introduction to SUMIFS formula
- Introduction to XLOOKUP formula
- How to use the new Dynamic Array functions in Excel
- Introduction to SUMPRODUCT formula
- Introduction to IFERROR formula
- Excel Formula Forensics
- Excel School program
10. Desperate times need desperate measures
Sometimes, no matter what you do, the workbook remains slow. Here are a few whacky ideas that I try in such cases:
- Replace formulas with values. I take a backup of the formulas. Then I select everything, CTRL+C, ALT+ESV (or CTRL Shift V). Done!
- Develop the workbook from scratch: Sometimes it helps to design the workbook afresh.
- Replace external data links with actual data: And import data by copy-pasting if needed.
- Reduce the functionality: See if the end user can live with fewer features in the workbook.
- Find an alternative solution: Trying to do everything in Excel is foolish. See if there is any external tool that can do this better & faster.
BONUS: Learn new formulas & play with them
Optimization is not a one-shot exercise. It is an ongoing-business. So you need to constantly learn new formulas, new uses & play with them. This way, you see new ways to improve a sluggish workbook. To begin with, explore our Formula homework & formula forensics pages and see how you solve these problems.
How do you speed-up your Excel formulas?
So how do you optimize & speed-up your Excel formulas? What techniques do you use? Please share using comments.

















39 Responses to “Make a Quick Thermometer Chart to Compare Targets and Actuals”
You'll probably have some readers insist on bullet charts, which in my experience are no easier to read.
Note on the case where actuals may exceed targets, the target has to be the second series in the chart, not the first, so it appears in front of the actual.
@Jon.. good point. And yes, readers are already saying bullets are the way to go. Atleast @dmgerbino said it on twitter: http://twitter.com/dmgerbino/status/6761754333
But I feel the same as you did. Bullets need orientation to get started and not that easy to construct (here is a tutorial btw... http://chandoo.org/wp/2008/07/21/dashboard-bullet-graphs-excel/ )
When you just have to compare 2 sets of values, a chart like above is good and easy enough.
And yes, thank you for saying that data series order should be correct to show the target on top.
I think bullet charts are a good alternative. I'm not a huge fan of the formatting that you used above where the outline is so thick.
Another option would be to combine a line graph (plan/goal amounts) with the columns (actual) and select the option to remove the line. This leaves just the value (marker), which can be increased in size to leave only a line about the size of the bar. It's an easy and cleaner way to show actual to plan/goal. Does that make sense?
Tony -
I would use columns (or area) for goal, and lines and markers for actual.
What about if you go over the target? The chart doesn't work so well then.
The technique described today is a near bullet chart. As I stated early this morning on Twitter (link: http://bit.ly/4K3yPM ) , I am a fan of Stephen Few's Bullet Graph.
Hubert Urruttia and I started with Charlie Kyd's method, but as Jon Peltier and Chandoo said, they are not easy to contruct. We moved onto prototyping with Fabrice Rimlinger's SPARKLINES FOR EXCEL and now use XLCube's (BonaVista) Micro Chart tool. Both of these tools allow you to create bullet charts just as easy as any Excel chart type.
As far as reading and interpreting them, this chart type has been the easiest for us to present.
There are many chart types. Today's "Make a Quick Thermometer Chart to Compare Targets and Actuals" is fine for a start, but your ultimate goal should be to create Bullet Graphs. AS Stephen Few states in his overview, "The bullet graph was developed to replace the meters and gauges that are often used on dashboards. Its linear and no-frills design provides a rich display of data in a small space, which is essential on a dashboard. Like most meters and gauges, bullet graphs feature a single quantitative measure (for example, year-to-date revenue) along with complementary measures to enrich the meaning of the featured measure. Specifically, bullet graphs support the comparison of the featured measure to one or more related measures (for example, a target or the same measure at some point in the past, such as a year ago) and relate the featured measure to defined quantitative ranges that declare its qualitative state (for example, good, satisfactory, and poor). Its linear design not only gives it a small footprint, but also supports more efficient reading than radial meters."
@dmgerbino
Since @dmgerbino had to bring my name up I guess I should throw in my two cents.
@dmgerbino and I have both implemented Bullet Charts with great success. What is most interesting about this fact is that we have had a harder time implementing Sparklines than Bullet Charts. The reason for this revolves around the simple fact of familiarity. I will explain. People look at a Sparkline and they think it is a really small Line Chart and it is not. People are familiar with Line Charts since they have been around since 1786 when they were created by William Playfair. Bullet Charts on the other hand are different so they almost demand an explanation. Because of this there was a lot of face time that was needed to explain these charts but once people got them they understood the concept. This is similar to when I introduced Cycle Plots http://bit.ly/87ydVG (Thank you @nbrgraphs!) or Horizon Charts http://bit.ly/6PVavj.
Now about the Thermometer Charts… The first thing I want to address is Tony Rose’s statement. I totally agree that the outline on the chart is too think. It might come of as being a whole new series or a new variable. What I have done in instances like this is I have created a Bar Graph and Scatter Plot mixture. Then I have turned off the Data Series on the Scatter Plot and turned on the Horrizontal Error Bars on the Scatter Plot. The new horizontal line stands for the Plan and the Bar is the actual. The reason why I find this more useful is because this technique works if you have exceeded plan. Actually, I do not understand how Chandoo’s method would display the data if Plan is surpassed.
This reminds me of another blog post that @dmgerbino, @Jon_Peltier, and myself commented on over a year ago. http://bit.ly/PNdO Actually, I talk about similar things in regards to familiarity to charting techniques.
- @hubert_urruttia
[...] we have a post on using thermometer charts to quickly compare actual values with targets. Today we follow up the post with 10 charting ideas you can use to compare actual values with [...]
Hi Chandoo
How do I increase the width of the bar chart and also make the long axis labels come in the same line?
Thank you,
Rajiv
@Rajiv
Select the outer part of the chart "Chart Area" and note the cursor will change to arrows
drag the edges to what ever size you want
You can hold the Alt key as you drag and the chart will snap to the cell boundaries
Now click on the chart area inside the chart "Plot Area" and note that a box with small circles appears around it
drag the circles on the edge of that box to suit
You can hold the Alt key as you drag and the chart will snap to the cell boundaries
@ Hui
Thank you for your comments. But my question was not for the "Plot Area" instead I wanted to know about how should I increase the width of the individual bar charts because with my data all the individual bars are coming to be thin and I want to make them appear broader.
Thank You
@Rajiv
Right click on the Series you want to change and select Format Data Series
Under Series Options goto Gap Width and decrease it to suit
[...] Make a Quick Thermo-meter Chart using Excel [...]
Thank you for the great chart and explanation!
How do I show two amounts (Signed Revenue and Pipeline) as stacked within the Target amount?
@CL... you can use stacked column charts and follow the same technique to get this. See attached file for an example - http://img.chandoo.org/playground/thermo-meter-with-additional-details.xlsx
Chandoo - thanks for the quick response! What if I want the data label for the pipeline to be the actual pipeline value, not the signed rev + pipeline value? i.e. 15 instead of 55
Thanks!
How would i do this in excel 2003?
[...] Thermo-meter charts are very good to show how actual value compares with target (or budget). But how can we add another point for say Last Year value to the chart with out cluttering it. [...]
Hi Guys,
As Matt said,
"What if you if you go over the target?"
Is there a way to make it change color? or at least to show what the target was?
I am planning to use this with a "Forecasted vs Real" production chart but I do not know how to show overproduction.
Any clue?
Thanks
How do I do this if I have 2 bars I want side-by-side? ie 2012 Mean with 2012 benchmark overlapping and then 2013 mean with 2013 benchmark overlapping? I want the 2012 and 2012 mean bars sie by side to compare multiple categories.
Sorry, I meant to say the 2012 and 2013 mean bars side by side
I have a problem in that my PM wants a chart that shows a stacked column (Labor and Expense) and then have the overall buget shown as a thermo.
Everytime I try to do this, I either end up with all three being stacked or all of them being seperated.
Help?
Or if someone knows how to only outline the top and sides of a chart series....then I would have this solved. (Make a stacked column with labor, expenses, and remaining budget, then clear the fill and outline only the top and sides.) I just can't figure out how to do that/ not sure if excel will let me only outline part of a chart series.
[...] Thermometer chart to show budget vs. actual performance [...]
Your home is valueble for me. Thanks!...
I've created the thermometer chart as the Chandoo tutorial described. How do I move my columns closer together? I don't want wider columns; I want to move my narrow columns closer together. Thank you!
Dear Elite members,
could you please let me informed whether we could incorporate color formating in this thermometer approach i.e. if my actual performance is <Min then meter color sud go Red, in between min & target it sud change to Amber & target and above sud change to Green. pls advise. thanks,
I think the only way to do that would be with VBA programming.
@Abhinav
Yes, Simply use a stacked column chart, colored appropriately
Or
You may also want to read about Bullet Charts
@ Hui,
Could you pls demonstrate this with the help of an example.
let's have the below sample data
Actual=12
Min=10
Target=15
Max=20
if Actual>=Min then bar color sud be Red
in between Min & Target= Amber
between target(inclusive) & Max = Green
greater than or equal to Max= Blue
Thanks in advance
Abhi
Great blog post with awesome sample data. I've implemented two of the top "power tips" by changing the colour of the actual values, AND setting Actual to be 40% transparent. Looking good.
[…] easy with these charts. Use them sparingly. As a rule a thermo-meter chart would be better (easy to make, takes less space, scalable) for situations like […]
[…] easy with these charts. Use them sparingly. As a rule a thermo-meter chart would be better (easy to make, takes less space, scalable) for situations like […]
I recently purchased the template bundle and love the ease of use - thank you!
I would like to ask if it is possible to add an important 'block' to the dashboard to illustrate an important status for my executive team; 'billing status'? (ie budget / amount billed) something like that?
Thank you!
@Cheif449.. Thanks for your purchase and kind words.
You can add this easily to the dashboard. Follow below steps.
1. Unprotect the dashboard worksheet.
2. Add a text box (Insert > Drawing Shapes) to the dashboard
3. Put any text inside it as per your need.
4. Format it as needed.
5. Protect the dashboard again.
How do you do this in Excel 2010 - I am not seeing that option in Format data series.
how would we check target and actual sale for multiple years
Select any of the bar, right click and format data series