As part of Speedy Spreadsheet Week, I have emailed a few renowned Excel experts and asked them to share their tips & ideas to speedup Excel. Today, I am glad to present a collection of the tips shared by them.

Excel Speeding up & Optimization Tips by Hui
About Hui:
Hui (Ian Huitson) has been writing & contributing to Chandoo.org for more than 2 years. Many of you know him from Formula Forensics & Data table related articles on Chandoo.org. See about Hui page for more about him.
In no particular order:
- Minimize the use of Volatile Functions
- Organize your workbook layout and data methodically
- Where possible use fixed values or Named formulas instead of lookups even if the values only change rarely, flag those for manual checking
- Don’t Start equations with a + that actually adds 0.4% calculation time
- Minimize use of the Data Table command to running summaries only at the end of a project
- Review the logic of the model and all if’s or lookup choices for necessity or alternatives
- Use negatives instead of multiple positives where appropriate in conjunction with If’s and Lookups
- Learn about Conjunctive Truth Tables, they Rock for reporting
- Array formulas can do the work of dozens of normal cells, but use cautiously
- Use Named Formulas and UDF’s instead of multiple Helper Cells/Rows or Columns
- Minimize of us Conditional Formatting
- Minimize use of linked workbooks especially if over network drives
- Take an advanced Excel course like the ExcelHero Academy
- Minimize the use of Excel 2007
Links:
Excel Speeding up & Optimization Tips by George
About George:
George runs Excel Unusual, where you can learn about using Excel for engineering, simulations & games. In his work, he builds complex spreadsheet models all the time. So I asked him to share a few tactics with us. He wrote 2 articles in response to my request.
Links:
Excel Speeding up & Optimization Tips by Gregory
About George:
Gregory runs Excel Semipro, where he shares Excel tips & ideas. I asked him to contribute to the Speedy Spreadsheet Week. This is what he says,
Tips by George:
To speed up my worksheet files, I have one primary rule: do not use the OFFSET function, which is volatile and can slow things down considerably. In newer spreadsheets I use Tables and The imposing INDEX function to keep ranges automatically updated. In Excel 2003 I use an event-based approach, with named ranges, the worksheet deactivate module, and VBA to keep lists and ranges updated.
Links:
Excel Speeding up & Optimization Tips by Luke
About Luke:
Luke is one of the Excel Ninjas at Chandoo.org where he contributed more than 1000 posts. I asked Luke to share some optimization tips based on his vast experience of using Excel & helping others. This is what he suggests:
- In VB, whenever I see a line like Selection.something that’s usually an indicator that I’m using extra lines. Either I need to apply the method directly to the object instead of selecting it, or I need to use a With statement.
- With Event macros, don’t forget the all-important lines of Application.EnableEvents = False and Application.EnableEvents = True so that you don’t cause multiple events to be triggered.
- See a section of code that you’re repeating? Probably need to make this a separate Sub or Function that you can then reference from the main code.
- When building your formula page, think top-down. Cells near the top of worksheet should be referenced in formulas that are below, not vice-versa. XL likes to calculate left to right, top to bottom. Scattering cell references around makes it work harder.
- When using large amounts of data that you want to be charted, sometimes I’ll build a formula sheet within the workbook with data, and then just build another workbook that uses a data query (referencing the formula results) to generate the charts.
- This might be more along the lines of auditing a worksheet, but sometimes it’s hard to see how I’ve laid out my constants and formulas, and using a worksheet map helps bring things into focus (related: create a worksheet map)
Want to become better in Excel? Join Chandoo.org courses
Excel SchoolLearn Excel from basics to advanced level. Create awesome reports, dashboards & workbooks. |
VBA ClassesLearn VBA & Macros step-by-step. Build complex workbooks, automate boring tasks and do awesome stuff. |
Excel Speeding up & Optimization Tips by Narayan
About Narayan:
Narayan is one of the Excel Ninjas at Chandoo.org where he contributed more than 1000 posts. I asked Narayan to share some optimization tips based on his vast experience of using Excel & helping others. This is what he suggests:
Period-to-Date and Cumulative SUMs
There are two methods of doing period-to-date or cumulative SUMs. Suppose the numbers that you want to cumulatively SUM are in column A, and you want column B to contain the cumulative sum; you can do either of the following:
You can create a formula in column B such as =SUM($A$1:$A2) and drag it down as far as you need. The beginning cell of the SUM is anchored in A1, but because the finishing cell has a relative row reference, it automatically increases for each row.
You can create a formula such as =$A1 in cell B1 and =$B1+$A2 in B2 and drag it down as far as you need. This calculates the cumulative cell by adding this row’s number to the previous cumulative SUM.
For 1,000 rows, the first method makes Excel do about 500,000 calculations, but the second method makes Excel do only about 2,000 calculations.
Subtotals
Use the SUBTOTAL function to SUM filtered lists. The SUBTOTAL function is useful because, unlike SUM, it ignores the following:
Hidden rows that result from filtering a list. Starting in Excel 2003, you can also make SUBTOTAL ignore all hidden rows, not just filtered rows.
Other SUBTOTAL functions.
Using SUMPRODUCT to Multiply and Add Ranges and Arrays.
In cases like weighted average calculations, where you need to multiply a range of numbers by another range of numbers and sum the results, using the comma syntax for SUMPRODUCT can be 20 to 25 percent faster than an array-entered SUM.
{=SUM($D$2:$D$10301*$E$2:$E$10301)}
=SUMPRODUCT($D$2:$D$10301*$E$2:$E$10301)
=SUMPRODUCT($D$2:$D$10301,$E$2:$E$10301)
These three formulas all produce the same result, but the third formula, which uses the comma syntax for SUMPRODUCT, takes only about 77 percent of the time to calculate that the other two formulas need.
Dynamic Ranges
These are most often created using the OFFSET and COUNTA functions , as in the following :
=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A)-1,1)
Sometimes , when data is stored in the form of records , so that all columns have data to the same extent , there may be several dynamic ranges ; say we have ORDER_ID in column A , CUSTOMER_ID in column B , and the AMOUNT in column C. Thus there may be several dynamic ranges as follows :
=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A)-1,1)
=OFFSET(Sheet1!$B$1,0,0,COUNTA(Sheet1!$B:$B)-1,1)
=OFFSET(Sheet1!$C$1,0,0,COUNTA(Sheet1!$C:$C)-1,1)
These can be simplified to :
=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A)-1,1)
=OFFSET(Sheet1!$B$1,0,0,COUNTA(Sheet1!$A:$A)-1,1)
=OFFSET(Sheet1!$C$1,0,0,COUNTA(Sheet1!$A:$A)-1,1)
These can then be optimized by storing the COUNTA value in a cell , and using the cell reference within the OFFSET formula :
=OFFSET(Sheet1!$A$1,0,0,Sheet1!$F$1,1)
=OFFSET(Sheet1!$B$1,0,0, Sheet1!$F$1,1)
=OFFSET(Sheet1!$C$1,0,0, Sheet1!$F$1,1)
Where Sheet1!$F$1 contains the formula : =COUNTA(Sheet1!$A:$A)-1
For more, refer to MSDN.
Resetting the USED RANGE
Pressing CTRL END will take the cursor and place it on the cell which Excel thinks is the last used cell in the worksheet.
Suppose you do this , and the cursor lands on D27 ; now navigate to any cell which is as far away as you can imagine , say AA3456 ; enter any character , even a space will do ; then clear the cell contents by pressing the DEL key.
Pressing CTRL END will now take the cursor to AA3456.
To reset the USED RANGE , go to the Immediate Window of the VBA Project , and enter the following statement :
Application.ActiveSheet.UsedRange
Your used range should now be reset to its earlier value of D27 ; pressing CTRL END will now take the cursor to D27.
Refer to this Stackoverflow discussion for more.
Excel Speeding up & Optimization Tips by Jordan
About Jordan:
Jordan runs Option Explicit, an Excel VBA blog. He shared these tips with us,
- When reading and writing to ranges, use .value2 (this is noticeable for large, iterative calculations)
- Ensure that ALL spreadsheet errors are handled. The most common errors I see ignored are #Ref errors and #Div (for dividing by zero). Use Go To Special… to find these errors and either delete them or use IFERROR to handle them. In my opinion, Excel errors are one of the biggest contributing factors to slow spreadsheets.
- When using INDEX, include the row or column number even if you don’t need it. For example, if I’m pulling data from only one column, I need only write =INDEX(A1:A10, 1) to pull the first item. However, =INDEX(A1:A10, 1, 1) appears to be a hair faster. Try it.
- Cut down on Lookup functions. In many instances, the lookup table has already encoded information in the correct order. Instead of looking up, say, Stage 2, just use INDEX on the desired column and pull from row 2.
Thanks to Hui, George, Gregory, Luke, Narayan & Jordan
Many thanks to all of you for sharing these ideas & tips so that we can speed up Excel. If you found these tips useful, say thanks to the contributors.
More on Excel Optimization & Speeding up:
Read these articles too,
- Optimization & Speeding-up Tips for Excel Formulas
- Charting & Formatting Tips to Optimize & Speed up Excel
- Optimization Tips & Techniques for Excel VBA & Macros
- Excel Optimization tips submitted by our readers
Want to become better in Excel? Join Chandoo.org courses
Excel SchoolLearn Excel from basics to advanced level. Create awesome reports, dashboards & workbooks. |
VBA ClassesLearn VBA & Macros step-by-step. Build complex workbooks, automate boring tasks and do awesome stuff. |













55 Responses to “Quickly Fill Blank Cells in a Table [Reader Tip]”
this can be done in 3 steps:
1. select the blank cells (as described above)
2. select the cell with the value you want to copy (CTRL-CLICK to add to the selection)
3. place cursor into formula bar and hit CTRL-ENTER
please ignore or delete my comment - it solves a different problem: copying a single value to all blank cells. apologies.
That is a great method and it saves me a lot of time! I first heard about it from Mr Excel in this video - http://www.youtube.com/watch?v=jHmh_viESuw. He has a neat way of doing the paste special values at the end of his video.
Hi!
I fill blank cells with an almost identical method; go to any the first blank cell in any column and place the equation and enter (=D2, for the same example above); then copy that cell, select the columns/range you want to fill (even if in different columns), Special, go to Blanks, Paste (default), copy all range and paste as values.
although the two methods are almost identical, what i use might be less hectic regarding entering formulas without clicking any of the cells (step 7)
ie:
1. fill an empty cell with using =D2(cell above)
2. copy D3 (the cell with the formula)
2. Select blank cells after selecting the range with empty cells (steps 1,2,3,4 and 5)
3. paste (normal)
4. copy then paste as values
BR
AQ
Great tip. I'll use it later today!
Martin -Thank You! This wonderful tip will save me a great deal of time each week.
Thanks Martin! Up to this point, I've always used a clumsy combination of filters and fill-down's. This is much cleaner.
Fantastic. Thanks for sharing.
None of these steps are necessary, Excel has this feature built into the ribbon.
Click on any row label in the table where there are blanks under it.
Click on the PivotTable Tools>Design tab on the ribbon
Click the Report Layout button in the Layout group at the far left
Select the option in the list
Done
To remove the duplication, use the feature right below that option.
There is a slightly simpler way and more flexible. Hihglight the required cells - which could be the column only in your table. Do the Ctrl-G, Alt-S, K, Enter (or Goto, Special, Blank Cells) so that they are highlighted and Type ={up arrow}, Ctl-Enter. This will make the cells equal the cell above - you do not have to enter any address at all. The technique can obviously be adapted to many situations. An example of the practical use for this is when you have saved an Inventory report from an accounting program that prints a heading (or something) on one line and prints details of that group (the heading) on subsequent lines (without the heading).
Hi Martin,
great trick! If only I had known it earlier, it would have saved me quite some time...
Not again, thanks!
I came across this in a class recently myself and posted a tutorial on my blog. The Special area of the Go To dialogue box is wicked. Some great options in there, hidden away waiting to be found.
Good work Martin.
Hi Martin,
Many thanks for sharing this powerful trick. Saves alot of time.
Gabriel
Please give credit where credit is due. Posted on June 30, 1998: http://www.mvps.org/dmcritchie/excel/fillempt.htm
Ahhh... Very neat trick. Thank you, Martin.
Ken, I tried to follow your post but could not get it to work. Could not find options
I have been using this trick for ages and would be lost without it.
Thank you very much!!! I had other tricks to deal with it, but this one is way faster and easier!!!
@BigG: Good resource there. Thanks for sharing the link with us. Please note that, this technique is not new. I am sure many Excel users would have discovered this already. We have not copied or inspired from David's article. It was just a happy coincidence.
@Ken: Your technique works only with Pivot Tables made in Excel 2010 or above.
Thanks Martin!! Nice post 🙂
@Chandoo: I also use the ASAP utilities add- in available in the link below:
http://www.asap-utilities.com/download-asap-utilities.php
This summarizes lot of hidden features in excel (like using Find function on entire workbook, password protecting all sheets at once, copying print setting of sheets etc.,) and is quite useful for beginners like me 😉
Thanks Martin and Ahmad Qadah. This is useful. I previously used to ask the senders to retrieve the data again so that I did not have the blanks.
Nice trick. I always use the specialcells method of the range object in code to access this powerful goto special dialog box in vba - a trick that Chandoo taught me in vba school - which is another reason you should join (a free bit of promotion for you Chandoo..!)
🙂
Yes I have seen this one before so credit may belong elsewhere. Never the less still especially useful where a legacy system report is sent to a text file which is subsequently re-imported to Excel but the original report is indented by groups. You can then recreate a complete data record for each report line
NB Different Ken to above
Thanks Martin - great post. I often work with data in this form and I usually fill in the blanks manually, by copying and dragging a cell value down - this way is much less prone to human error!
One challenge.. the last step where I change formula to constants. This replaces any formulas that I have as well. What If I want to change the formula to constants only where I replaced them with blank ?
Hi martin, thanks a million 🙂
Nicely explained Martin, thanks for sharing this tip. As Tanja says, this method is far less error-prone. When I first learned this method it saved me lots of time, so I decided to create a video on Youtube to share it with others. In my 3 minute video I compare side-by-side two methods of filling in blanks on 500 rows of data (1) using the fill handle, (2) using Go To > Special > Select Blanks
Just like in Mr Excel's video shared by Andrew in comment (3), I used the right mouse button to drag the selection border to do paste special values at the last step.
If you want to check out my video, visit this link: http://www.youtube.com/watch?v=9TDcVOKbm34&hd=1
I've came across this a month ago, and it really is a gem of a tip!
Thanks. Great tip and useful for a range of excel projects 🙂
Vishy,
When you Ctrl Enter the formula into all blank cells, Excel keeps the formerly blank cells highlighted, revealing the new values.
At this point you can choose to Copy and Paste Special them as constants. All other formulas remain untouched.
BigG,
I was not familiar with that link and I certainly didn't copy the article from it. As Chandoo commented this is not a new technique, and I am hardly the first to have written about it.
@Martin,
using office 2007; you can not copy multiple selection, what version are you using?
Thanks
Thanks, Really nice, really helpful.
wow, how cool is that! Thank you for this tipp!! GREAT!
I thought this was a great tip. I had never done such things with tables in Excel (having only converted to 2007 a couple of months ago, I soon discovered what a versatile tool they can be). So I decided to create my own copy and duplicate the process. Taking it a step further, I recorded the steps in VBA and used those as a guideline to create this simple macro which accomplishes the same function.
Caveat: this will only work when a cell in the table is selected and it will replace ALL formulas in the table with their values.
Sub FillTableBlanks()
' Macro created 20 October 2011 by Jason B White
'Declare Variable
Dim strTable As String
'Get Current Table Name
strTable = ActiveCell.ListObject.Name
'Select Current Table
Range(strTable).Select
'Fill Blank Cells With Formulas
Selection.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=R[-1]C"
'Paste Values Of Formulas
Selection = Selection.Value
End Sub
I hope that submitting macros is sanctioned in this forum. My previous post was my first ever attempt at contributing to an Excel blog. And I'm unaware if there is a way to differentiate macro snippets by using tags as I've seen in other Excel VBA forums.
I just wanted to mention that I figured out a way to modify my macro so that it doesn't overwrite ALL formulas in the table, but only those which were filled in by the macro.
Modifying the fourth section (Fill Blank Cells With Formulas) as shown below accomplishes that:
'Fill Blank Cells With Formulas
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.FormulaR1C1 = "=R[-1]C"
Hi,
I face a similar situation in office and use the below macro after selecting the range of data across which I want to duplicate the data below.
Sub FillBlankCellsSelectionDown()
Dim rAcells As Range, rLoopCells As Range
Set rAcells = Selection
For Each rLoopCells In rAcells
If rLoopCells.Value = "" Then
rLoopCells.FillDown
End If
Next rLoopCells
End Sub
re: paste special -> values
Drag the Paste Values toolbutton on to the standard toolbar next to the Paste button and save a couple of clicks.
Hi everyone many thanks for sharing this solutions but do not work Excel 2003? right? Thanks
@Alejandra:
I know that the macro I created was in Excel 2007. I assume that it's probably specific to 2007 (or 2010), but can't be sure, as I no longer have access to a PC running Excel 2003.
I have to admit that I didn't even realize that tables existed when I was using 2003.
Filling blank cells (cleaning-up the pivot-table aftermath) is one of our "daily-ritual", to dealing with those, we've create a short-cut (one of the many) to very quickly fill-up those blanks.
Basically what we need to do is to select the whole area to be filled-up (with the value above), and click a button, VBA automatically deals with the rest.
We use VBA to handle this problem just as mentioned above by several other people, however, I think we'll also need to consider the extreme (well, actually not that extreme if you're dealing with lots of data on a day-to-day basis) case: that the "blank" cells are highly fragmented, e.g. the maximum "areas" that Excel 2003 can handle is around 6500 (sorry I couldn't find the exact spec).
Thus, in our function, there's another step to cut-off the number of cells going into the "specialcells" function, just to make sure that the function will run in every condition.
I just wanna give a solution to similar problem which i face regularly while copying the data from a pivot as it is. I apply the following solution which i think is the easiest one on earth. Select a cell F2 (considering that column E is the last column filled with data) and type the following formula =IF(ISBLANK(A2),F1,A2). Now just drag the formula equivalent to the length and breadth of the entire range of data which want to fill in this case drag it from F2:I21 , remember do not apply on the cost column.
Now just copy whole new range i.e: F2:I21 and paste special it over the former range A2:D21. That's it 🙂
If u find any problem related to this formula u r welcome to contact me.
thanks martin
This doesn't work in excel 2007. So request to Martin , if he can confirm which version he has used. Guess 2010.
@BK
my method (comment #4) which is almost the same as Martins works on excel 2007... i've been using it since 2007 came out actually.
Excelent trick, thanks Martin.
[...] Quickly Fill Blank Cells in a Table [...]
eXCEEELLTOOOOOOOOOOOOOOOO......!
Many thanks to Martin.
im getting an error no cells were found why is this
Very cool trick!
I'm facing a similar problem, but I'd like to use a formula to pick the first non-empty above the referenced cell, and keep the empty cells empty. Any solution?
Example case:
I've got 3 columns, 1) consecutive dates, 2) my current weight, 3) my BMI. The first data row would be like: A2) jan-1, B2) 70 (kg), C2) =70/1,75^2 (because my height, 175cm, is pretty constant)
Now of course I forget to write down my weight on jan-2nd, so the formula would return 0. If my weight is blank, I'd like to refer to the last 'non-blank' weight (up the list of course, so jan-1st).
The solution on this page would solve my problem partially, but every time I leave cells blank, I have to repeat these steps. A formula would prevent this, AND I can still see which days were actually not filled in.
[…] http://chandoo.org/wp/2011/10/17/fill-blank-cells-in-a-table/ […]
Thxs! Yes, "knew" you could do this with "one" col of data...never thought to try it with >>multiple<< cols...Cool!
Thanks a lot i was searching this thing for many days ,
Thanks a lot to martin
Thanks a lot to martin
Thanks a lot i was searching this thing for many days ,
Thanks a lot to martin
The north, on the contrary, is the land of mighty and sometimes creepy-looking pinetrees, often compared to monsters from fairy tales.
Pages 1 through 3 of the tentative budget are also printed in portrait format so
the writing on those pages is also sideways.
There are occasionally long discussions of the cost of nuclear relative to the cost of renewables in the technical literature.