How to remove blank cells in Excel

The tutorial will teach you how to remove blank spaces in Excel to give your worksheets a clear and professional look.

Empty cells are not bad if you are intentionally leaving them in right places for aesthetic reasons. But blank cells in wrong places are certainly undesirable. Luckily, there is a relatively easy way to remove blanks in Excel, and in a moment you will know all the details of this technique.

How to remove blank cells in Excel

Deleting empty cells in Excel is easy. However, this method is not applicable in all situations. To keep yourself on the safe side, please be sure to make a backup copy of your worksheet and read these caveats before you do anything else.

With a backup copy stored in a save location, carry out the following steps to delete empty cells in Excel:

  1. Select the range where you want to remove blanks. To quickly select all cells with data, click the upper-left cell and press Ctrl + Shift + End. This will extend the selection to the last used cell.
  2. Press F5 and click Special… . Or go to the Home tab > Formats group, and click Find & Select > Go to Special:
    Go To Special…
  3. In the Go To Special dialog box, select Blanks and click OK. This will select all the blank cells in the range.
    Select all blank cells in the range.
  4. Right-click any of the selected blanks, and choose Delete… from the context menu:
    Delete blank cells in Excel.
  5. Depending on the layout of your data, choose to shift cells left or shift cells up, and click OK. In this example, we go with the first option:
    Delete blank spaces and shift cells left.

That's it. You have successfully removed blank spaces in your table:
Empty cells are removed.

Tips:

  • If something has gone awry, don't panic and immediately press Ctrl + Z to get your data back.
  • If you only want to highlight blank cells rather than remove, you will find a few different methods in this article: How to select and highlight blank cells in Excel.

When not to remove empty cells by selecting blanks

The Go To Special > Blanks technique works fine for a single column or row. It can also successfully eliminate empty cells in a range of independent rows or columns like in the above example. However, it could be detrimental to structured data. To prevent this from happening, please be very careful when removing blanks in your worksheets and keep in mind the following caveats:

1. Delete blank rows and columns instead of cells

If your data is organized in a table where columns and rows contain related information, deleting empty cells will mess up the data. In this case, you should only remove blank rows and blank columns. The linked tutorials explain how to do this quickly and safely.

2. Does not work for Excel tables

It is not possible to delete any individual cells in an Excel table (vs. a range), you are only allowed to remove entire table rows. Or you can convert table to range first, and then remove blank cells.

3. May damage formulas and named ranges

Excel formulas can adjust to many changes made to the referenced data. Many, but not all. In some situations, the formulas that referred to the deleted cells may get broken. So, after removing blank spaces, take a quick look at the related formulas and/or named ranges to make sure they work normally.

How to extract a list of data ignoring blanks

If you fear that removing blank cells in a column may mangle your data, leave the original column as-is and extract non-empty cells to somewhere else. This method comes in handy, when you are creating a custom list or drop-down data validation list and wish to ensure there are no blanks in it.

With the source list in A2:A11, enter the below array formula in C2, press Ctrl + Shift + Enter to complete it correctly, and then copy the formula down to a few more cells. The number of cells where you copy the formula should be equal to or greater than the number of items in your list.

Formula to extract non-blank cells:

=IFERROR(INDEX($A$2:$A$11, SMALL(IF(NOT(ISBLANK($A$2:$A$11)), ROW($A$1:$A$10),""), ROW(A1))),"")

The following screenshot shows the result:
Extract a list of data in Excel excluding blank cells

How the formula works

Tricky at first sight, upon a closer look the formula's logic is easy to follow. In plain English, the formula in C2 reads as follows: return the first value in the range A2:A11 if that cell is not blank. In case of an error, return an empty string ("").

For thoughtful Excel users, who are curious to know nuts and bolts of every new formula, here's the detailed break-down:

You have the INDEX function return a value from $A$2:$A$11 based on the specified row number (not a real row number, a relative row number in the range). In a simpler scenario, we could put INDEX($A$2:$A$11, 1) in C2, and it would fetch us a value in A2. The problem is that we need to cater for 2 more things:

  • Make sure A2 is not blank
  • Return the 2nd non-blank value in C3, the 3rd non-blank value in C4, and so on.

Both these tasks are handled by the SMALL(array,k) function:

SMALL(IF(NOT(ISBLANK($A$2:$A$11)), ROW($A$1:$A$10),""), ROW(A1))

In our case, the array argument is generated dynamically in the following way:

  • NOT(ISBLANK($A$2:$A$11)) identifies which cells in the target range are not blank and returns TRUE for them, otherwise FALSE. The resulting array of TRUE and FALSE goes to the logical test of the IF function.
  • IF evaluates each element of the TRUE/FALSE array and returns a corresponding number for TRUE, an empty string for FALSE:

    IF({TRUE;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;TRUE}, ROW($A$1:$A$10),"")

ROW($A$1:$A$10) is only needed to return an array of numbers 1 through 10 (because there are 10 cells in our range) from which IF can pick a number for TRUE values.

As the result, we get the array {1;"";3;"";5;6;"";8;"";10} and our complex SMALL function transforms into this simple one:

SMALL({1;"";3;"";5;6;"";8;"";10}, ROW(A1))

As you see, the array argument contains only the numbers of non-empty cells (mind you, these are relative positions of the elements in the array, i.e. A2 is element 1, A3 is element 2, and so on).

In the k argument, we put ROW(A1) which instructs the SMALL function to return the 1's smallest number. Due to the use of relative cell reference the row number goes up in increments of 1 as you copy the formula down. So, in C3, k will change to ROW(A2) and the formula will return the number of the 2nd non-blank cell, and so on.

However, we do not actually need the non-empty cell numbers, we need their values. So, we move forward and nest the SMALL function into the row_num argument of INDEX forcing it to return a value from the corresponding row in the range.

As a finishing touch, we enclose the whole construction in the IFERROR function to replace errors with empty strings. Errors are inevitable because you cannot know how many non-blank cells are in the target range, therefore you copy the formula to a bigger number of cells.

Given the above, we can build this generic formula to extract values ignoring blanks:

{=IFERROR(INDEX(range, SMALL(IF(NOT(ISBLANK(range)), ROW($A$1:$A$10),""), ROW(A1))),"")}

Where "range" is the range with your original data. Please pay attention that ROW($A$1:$A$10) and ROW(A1) are constant parts and never change no matter where your data starts and how many cells it includes.

How to delete empty cells after the last cell with data

Blank cells that contain formatting or non-printable characters may cause a lot of issues in Excel. For example, you may end up having a much bigger file size larger than necessary or have a few blank pages printed. To avoid these issues, we will delete (or clear) empty rows and columns that contain formatting, spaces or unknown invisible characters.

How to locate the last used cell on the sheet

To move to the last cell on the sheet that contains either data or formatting, click on any cell and press Ctrl + End.

If the above shortcut has selected the last cell with your data, it means the remaining rows and columns are really blank and no further manipulations are needed. But if it has taken you to a visually empty cell, know that Excel does not consider that cell blank. It could be a mere space character produced by an accidental key stroke, a custom number format set for that cell, or a non-printable character imported from an external database. Whichever the reason, that cell is not empty.

Delete cells after the last cell with data

To clear all content and formatting after the last cell with data, do the following:

  1. Click the heading of the first blank column to the right of your data and press Ctrl + Shift + End. This will select a range of cells between your data and the last used cell on the sheet.
  2. On the Home tab, in the Editing group, click Clear > Clear All. Or right-click the selection and click Delete… > Entire column:
    Delete empty cells after the last cell with data
  3. Click the heading of the first blank row below your data and press Ctrl + Shift + End.
  4. Click Clear > Clear All on the Home tab or right-click the selection and choose Delete… > Entire row.
  5. Press Ctrl + S to save the workbook.

Check the used range to make sure it now contains only cells with data and no blanks. If the Ctrl + End shortcut selects a blank cell again, save the workbook and close it. When you open the worksheet again, the last used cell should be the last cell with data.

Tip. Given that Microsoft Excel 2007 and higher contains over 1,000,000 rows and more than 16,000 columns, you may want to reduce the workspace size to prevent your users from unintentionally entering data into wrong cells. For this, you can simply remove empty cells from their view as explained in How to hide unused (blank) rows and columns.

That's how you delete blank in Excel. I thank you for reading and hope to see you on our blog next week!

Latest comments

  1. I copied this exactly on a brand new spreadsheet and it just returns the list as it is currently, blanks included...

    1. I had the same problem. Even the length of the data in my "blank" cells was zero, but there was clearly something there.

      My data was simply text, so I resorted to a simple tactic:

      I copied the data into Notepad, and then copied it from there back into my spreadsheet.

      Next time I did the operation, the blank cells really were blank, and so the method worked exactly as above.

      HTH!

  2. Hey All,
    I have tried to expand the formula to account for both number values and blanks, I did this by expanding the if statement to an "and" and having two checks check if not blank and if not a number, not sure where I have gone wrong here any advice would be appreciated.

    =IFERROR(INDEX($A$2:$A$30, SMALL(IF(AND(NOT(ISNUMBER($A$2:$A$30)),NOT(ISBLANK($A$2:$A$30))), ROW($A$1:$A$29),""), ROW(A1))),"")

  3. The blank cells in my list was filled with (" ") by certain formula that I am using, upon using the the above formula it came out with the same list with blanks (not change), however it worked like a charm by replacing (" ") in the blank cells with number (0) by modifying my original formula.

    1. There is a you tube video that describes how to implement this formula, after pressing (Shift. Alt, Enter) you have to drag down the formula cell to get all the filtered cells in the new list.

  4. Hi,

    I'm using the following formula to extract data from a schedule to return all occupied cells into a list format.

    =IFERROR(INDEX($G$5:$G$21, SMALL(IF(NOT(ISBLANK($G$5:$G$21)), ROW($G$1:$G$21),""), ROW(C1))),"")

    It's working great for the first column, but I'm trying to figure out how to run the formula for multiple columns where the returned list is still in one column. Does that make sense? I've tried expanding the range within the index but that just returns the data in the other columns under their own separate column. As is in the formula below:

    =IFERROR(INDEX($G$5:$H$21, SMALL(IF(NOT(ISBLANK($G$5:$H$21)), ROW($G$1:$H$21),""), ROW(C1))),"")

    For example, I have entries in G7, G13, G15, H5, and H10. I want all entries to be recorded in a new list but I only seem to be able to retrieve entries from Column G

    Any tips for me?

    1. Hello!
      Unfortunately, I was unable to extract non-blank data cells from the range using your formula. If you want to extract data from two columns, excluding blank cells, try this formula:

      =FILTER(TOCOL(G5:H13),TOCOL(G5:H13)>0)

      Use TOCOL function to convert range to single column. FILTER function extracts all numbers that are greater than zero. You can use any other condition.
      I hope it’ll be helpful. If something is still unclear, please feel free to ask.

  5. Dang it, an error in the formula itself when typing it across...... there should be does not equal using less than greater than in there.... I'll try copy paste again...

    =IFERROR(INDEX($D$101:$D$1100, SMALL(IF($D$101:$D$1100 "", ROW($D$101:$D$1100),""), ROW(D100))),"")

    It shows on the post a comment screen.. so unless it's getting taken out upon send....

    ...SMALL(IF($D$101:$D$1100 then less than greater than then "", etc.

    1. Yeah, when posting it's stripping the does not equal from the equation....

  6. Mates, can I ask, is Ablebit suite has a tool for removing blank cells in the range for the Google Sheets (not an offline PC Excel) similar to what was described above in the article here for Excel?

    Much appreciated! i'm on a trial currently..btw

  7. Hi, the formula works fine for the first row: C2 returns "Peach" , but when I copy the formula in C3, C4... C11, the result is only blanks.

    ROW (A2) changes with the row, to A3, A4 .. A11; but the result is always blank after C2...
    Can you help?

    1. Hello!
      Without seeing your formula, I cannot give advice on how to change it. However, I think your problem is relative and absolute cells references. See which references change when copied and check out this guide.

  8. I'm wondering is there a formula tweak here. So that on a separate sheet or a separate area if my table or section has blank rows they will not be copied to this other sheet or other section. I am looking for some formula that would copy over a row of information and only those row that are NOT blank. Blank rows would not be copied. In the new section there would be no blank rows. I'm thinking as an example an inventory list. In column A would have the quantity. In column B would have part number. In column C would have description. In column D would have price. That's my master sheet. Call the or my build sheet. I want it to look at the quality column if there is no number there then consider it blank and do not copy it over to the build list but if it is or does have a number then it is not blank and copy it over to the build list. Hope this makes sense thank you very much for your consideration.

    1. Hello!
      If I understand your task correctly, you can set a filter on this column and get only rows with values. You can copy these values.
      I hope I answered your question. If something is still unclear, please feel free to ask.

  9. Mine doesn't seem to be working. It grabs the first cell item in the list, but when I drag the formula to the remaining cells below. They just come back blank.

    So in Cell C2: =IFERROR(INDEX(A2:A11, SMALL(IF(NOT(ISBLANK(range)), ROW($A$1:$A$10),""), ROW(A1))),"") And it does bring up "Peach"

    In Cell C3: =IFERROR(INDEX(A3:A12, SMALL(IF(NOT(ISBLANK(range)), ROW($A$1:$A$10),""), ROW(A2))),"") - Just comes up blank

    Cells C4 - C10 are all also blank. The only change in each cell is the last part ROW(A1 to A2... etc)

    1. Hello Thomas!
      If I understand your task correctly, the following formula should work for you:

      =IFERROR(INDEX($A$2:$A$11, SMALL(IF(NOT(ISBLANK(range)), ROW($A$1:$A$10),””), ROW(A1))),””) And it does bring up “Peach”

      You can read more about absolute and relative cell references here.
      I hope this will help, otherwise please do not hesitate to contact me anytime.

  10. Hello!
    I wants to remove formula error(#N/A! or #Num!) cell or formula blank cell, although it's not blank but is it possible? if possible how to do please explain. Thank you.

    1. Hello Al-Amin!
      In order not to show errors in cells, the IFERROR function is used. To learn more about it, please read this article on our blog: https://www.ablebits.com/office-addins-blog/excel-iferror-function-formula-examples/

      You can use our Ultimate Suite for Excel to search for empty cells with formulas. You can select all cells with formulas in a sheet by using Select by Value -> Select Special Cells. Then you can substitute all selected formulas with their values by using Convert Formulas to Values. All invisible and non-printing characters can be deleted with the help of Remove Characters.

      You can install Ultimate Suite in a trial mode and test the tools for 30 days for free: https://www.ablebits.com/files/get.php?addin=xl-suite&f=free-trial
      I hope this information will be helpful to you.

  11. Hello raggazzi! (Italian for ""guys and gals" :-)>
    First, I want to say that the ablebits.com website is outstanding; not only in terms of Excel expertise, but also in the clarity of presentation and "style" of written english. Bravo!
    I have one problem, however, with
    "How to extract a list of data ignoring blanks"
    from https://www.ablebits.com/office-addins-blog/remove-blank-cells-excel/
    This is an elegant formula, but for me it only seems to work when I start it exactly as shown, at cell A1. If I attempt to move it, or even simply insert a row above, so that it begins on Row 2 at A2, it doesn't work. I've tried working with relative vs absolute addresses, etc. but no luck. Am I missing something?
    Thanks again,
    Howard

    1. Hi Howard,

      Thank you for your kind words about our blog, it's a good incentive for us to keep it up :)

      Regarding the formula. In fact, in our example, the data starts in cell A2 (A1 is the column header and it's ignored by the formula). The logic is explained in the "How the formula works" section that comes right after the example. To adjust the formula for your data, be sure to change only "range" in the generic formula below, and remember to press Ctrl+Shift+Enter to complete it:

      IFERROR(INDEX(range, SMALL(IF(NOT(ISBLANK(range)), ROW($A$1:$A$10),""), ROW(A1))),"")

      For example, if your data starts in rows 3, i.e. range=$A$3:$A$12 (mind the absolute references!), the formula would go as follows:
      =IFERROR(INDEX($A$3:$A$12, SMALL(IF(NOT(ISBLANK($A$3:$A$12)), ROW($A$1:$A$10),""), ROW(A1))),"")

  12. This does not appear to work with results from formulas. I have used an if condition to blank out many rows that are not needed. Trying to remove those rows using this does not seem to work.

    1. A solution would be to code blanks in your formula results as 'NA()', then replace 'ISBLANK()' with 'ISNA()' in the formula above.

    2. Hi Dustin,
      You are right, this does not work with formula results. In terms of Excel, a cell containing a formula is not blank even if the formula returns an empty string.

Post a comment



Thanks for your comment! Please note that all comments are pre-moderated, and off-topic ones may be deleted.
For faster help, please keep your question clear and concise. While we can't guarantee a reply to every question, we'll do our best to respond :)