Excel TRIM function - quick way to remove extra spaces

The tutorial demonstrates a few quick and easy ways to trim Excel spaces. Learn how to remove leading, trailing, and extra spaces between words, why Excel TRIM function is not working and how to fix it.

Are you comparing two columns for duplicates that you know are there, but your formulas cannot find a single duplicate entry? Or, are you adding up two columns of numbers, but keep getting only zeros? And why on earth does your obviously correct Vlookup formula return just a bunch of N/A errors? These are only a few examples of problems that you may be seeking answers to. And all are caused by extra spaces hiding before, after or between numeric and text values in your cells. Excel formulas not working because of extra spaces

Microsoft Excel offers a few different ways to remove spaces and clean up your data. In this tutorial, we will investigate the capabilities of the TRIM function as the fastest and easiest way to delete spaces in Excel.

TRIM function - remove extra spaces in Excel

You use the TRIM function in Excel removes extra spaces from text. It deletes all leading, trailing and in-between spaces except for a single space character between words.

The syntax of the TRIM function is the easiest one could imagine:

TRIM(text)

Where text is a cell that you want to remove excess spaces from.

For example, to remove spaces in cell A1, you use this formula:

=TRIM(A1)

And the following screenshot shows the result: Excel TRIM function

Yep, it's that simple!

Please note that the TRIM function was designed to remove only the space character, which has value 32 in the 7-bit ASCII code system. If in addition to extra spaces, your data contains line breaks and non-printing characters, use the TRIM function in combination with CLEAN to delete the first 32 non-printing characters in the ASCII system.

For example, to remove spaces, line breaks and other unwanted characters from cell A1, use this formula:

=TRIM(CLEAN(A1))

For more information, please see How to remove non-printing characters in Excel

To get rid of nonbreaking spaces (html character  ), which has value 160, use TRIM together with SUBSTITUTE and CHAR functions:

=TRIM(SUBSTITUTE(A1, CHAR(160), " "))

For full details, please see How to delete non-breaking spaces in Excel

How to use TRIM function in Excel - formula examples

Now that you know the basics, let's discuss a few specific uses of TRIM in Excel, pitfalls that you may face and working solutions.

How to trim spaces in an entire column of data

Supposing you have a column of names that have some whitespace before and after the text, as well as more than one spaces between the words. So, how do you remove all leading, trailing and excess in-between spaces in all cells at a time? By copying an Excel TRIM formula across the column, and then replacing formulas with their values. The detailed steps follow below.

  1. Write a TRIM formula for the topmost cell, A2 in our example:

    =TRIM(A2)

  2. Position the cursor to the lower right corner of the formula cell (B2 in this example), and as soon as the cursor turns into the plus sign, double-click it to copy the formula down the column, up to the last cell with data. As the result, you will have 2 columns - original names with spaces and formula-driven trimmed names. Trim spaces in an entire column of data
  3. Finally, replace the values in the original column with the trimmed data. But be careful! Simply copying the trimmed column over the original column would destroy your formulas. To prevent this from happening, you need to copy only values, not formulas. Here's how:
    • Select all cells with Trim formulas (B2:B8 in this example), and press Ctrl+C to copy them.
    • Select all cells with the original data (A2:A8), and press Ctrl+Alt+V, then V. It is the paste values shortcut that applies the Paste Special > Values
    • Press the Enter key. Done!

How to remove leading spaces in a numeric column

As you have just seen, the Excel TRIM function removed all extra spaces from a column of text data without a hitch. But what if your data is numbers, not text? Trim leading spaces in a numeric column

At first sight, it may seem that the TRIM function has done its job. Upon a closer look, however, you will notice that the trimmed values do not behave like numbers. Here are just a few indications of abnormality:

  • Both the original column with leading spaces and trimmed numbers are left-aligned even if you apply the Number format to the cells, while normal numbers are right-aligned by default.
  • When two or more cells with trimmed numbers are selected, Excel displays only COUNT in the status bar. For numbers, it should also display SUM and AVERAGE.
  • A SUM formula applied to the trimmed cells returns zero.
The TRIM function does not remove spaces before numbers correctly.

From all appearances, the trimmed values are text strings, while we want numbers. To fix this, you can multiply the trimmed values by 1 (to multiply all the values in one fell swoop, use the Paste Special > Multiply option).

A more elegant solution is enclosing the TRIM function in VALUE, like this:

=VALUE(TRIM(A2))

The above formula removes all leading and trailing spaces, if any, and turns the resulting value into a number, as shown in the screenshot below: Use the VALUE & TRIM functions to remove spaces before numbers.

How to remove only leading spaces in Excel (Left Trim)

In some situations, you may type duplicated and even triplicated spaces between words to make your data better readable. However, you do want to get rid of leading spaces, like this: Removing only leading spaces in Excel

As you already know, the TRIM function eliminates extra spaces in the middle of text strings, which is not what we want. To keep all in-between spaces intact, we'll be using a bit more complex formula:

=MID(A2,FIND(MID(TRIM(A2),1,1),A2),LEN(A2))

In the above formula, the combination of FIND, MID and TRIM calculates the position of the first text character in a string. And then, you supply that number to another MID function so that it returns the entire text string (the string length is calculated by LEN) starting at the position of the first text character.

The following screenshot shows that all leading spaces are gone, while multiple spaces between words are still there: A Trim formula to remove leading spaces only

As a finishing touch, replace the original text with the trimmed values, as shown in step 3 of the Trim formula example, and you are good to go!

Tip. If you also want to remove spaces from the end of cells, make use of the Trim Spaces tool. There is no obvious Excel formula to remove leading and trailing spaces keeping multiple spaces between words intact.

How to count extra spaces in a cell

Sometimes, before removing spaces in your Excel sheet, you may want to know how many excess spaces are actually there.

To get the number of extra spaces in a cell, find out the total text length using the LEN function, then calculate the string length without extra spaces, and subtract the latter from the former:

=LEN(A2)-LEN(TRIM(A2))

The following screenshot shows the above formula in action: A formula to count extra spaces in a cell

Note. The formula returns the count of extra spaces in a cell, i.e. leading, trailing, and more than one consecutive spaces between words, but it does not count single spaces in the middle of the text. If you want to get the total number of spaces in a cell, use this Substitute formula.

How to highlight cells with excess spaces

When working with sensitive or important information, you may be hesitant to delete anything without seeing what exactly you are deleting. In this case, you can highlight cells containing extra spaces first, and then safely eliminate those spaces.

For this, create a conditional formatting rule with the following formula:

=LEN($A2)>LEN(TRIM($A2))

Where A2 is the topmost cell with data that you want to highlight.

The formula instructs Excel to highlight cells in which the total string length is greater than the length of the trimmed text.

To create a conditional formatting rule, select all the cells (rows) that you want to highlight without column headers, go to the Home tab > Styles group, and click Conditional formatting > New Rule > Use a formula to determine which cells to format.

If you are not familiar with Excel conditional formatting yet, you will find the detailed steps here: How to create a conditional formatting rule based on formula.

As demonstrated in the screenshot below, the result perfectly corroborates with the extra spaces count that we got in the previous example: Conditional formatting rule to highlight cells with excess spaces

As you see, the use of the TRIM function in Excel is easy and straightforward. Nevertheless, if someone wants to have a closer look at the formulas discussed in this tutorial, you are welcome to download the Trim Excel Spaces Workbook.

Excel TRIM not working

The TRIM function only removes the space character represented by code value 32 in the 7-bit ASCII character set. In the Unicode character set, there is one more space character called the non-breaking space, which is commonly used on web pages as the html character  . The nonbreaking space has a decimal value of 160, and the TRIM function cannot remove it by itself.

So, if your data set contains one or more white spaces that the TRIM function does not remove, use the SUBSTITUTE function to convert non-breaking spaces into regular spaces and then trim them. Assuming the text is in A1, the formula goes as follows:

=TRIM(SUBSTITUTE(A1, CHAR(160), " "))

As an extra precaution, you can embed the CLEAN function to clean the cell of any non-printable characters:

=TRIM(CLEAN(SUBSTITUTE(A1, CHAR(160), " ")))

The following screenshot shows the difference: Excel TRIM not working because of non-breaking space characters

If the above formulas do not work for you either, chances are that your data contain some specific nonprinting characters with code values other than 32 and 160. In this case, use one of the following formulas to find out the character code, where A1 is a problematic cell:

Leading space: =CODE(LEFT(A1,1))

Trailing space: =CODE(RIGHT(A1,1))

In-between space (where n is the position of the problematic character in the text string):

=CODE(MID(A1, n, 1)))

And then, supply the returned character code to the TRIM(SUBSTITUTE()) formula discussed above.

For example, if the CODE function returns 9, which is the Horizontal Tab character, you use the following formula to remove it:

=TRIM(SUBSTITUTE(A1, CHAR(9), " "))

Trim Spaces for Excel - remove extra spaces in a click

Does the idea of learning a handful of different formulas to deal with a trivial task sound ridiculous? Then you may like this one-click technique to get rid of spaces in Excel. Let me introduce you to Trim Spaces tool included in our Ultimate Suite.

With Ultimate Suite installed in your Excel, removing spaces in Excel is as simple as this:

  1. Select the cell(s) where you want to delete spaces.
  2. Click the Trim Spaces button on the ribbon.
  3. Choose one or all of the following options:
    • Trim leading and trailing spaces
    • Trim extra spaces between words, except for a single space
    • Trim non-breaking spaces ( )
  4. Click Trim.

That's all there is to it! All extra spaces are removed in a blink.

In this example, we are only removing leading and trailing spaces, keeping multiple spaces between words intact for better readability - the task that Excel formulas cannot cope with is accomplished with a mouse click! One-click solution to trim spaces in Excel

If you are interested to try Trim Spaces in your sheets, you are welcome to download an evaluation version at the end of this post.

I thank you for reading and look forward to seeing you next week. In our next tutorial, we will discuss other ways to trim spaces in Excel, please stay tuned!

Available downloads

Trim Excel Spaces - formula examples (.xlsx file)
Ultimate Suite - trial version (.exe file)

125 comments

  1. How can I remove space(s) at the end of cell range as these are not visible in cells but problematic when referred to value anywhere else?

    • Aslam:
      You should be able to use the TRIM function.
      It removes leading and trailing spaces.
      It's just TRIM(A1) where the data to trim is in A1.

      • Like-wise to add up space in the right side of detail, left side of detail, and the middle side of detail, what is the short key to add space.

  2. Hi, how do I remove the black space behind a series of numbers
    for example:123,456.00 , there was an invisible space after the two 0.
    I have used find and replace, trim, substitude, it all didn't work.

    Hope you can help.

  3. Raj:
    You should be able to use the TRIM() function. However when I try to use it with your sample data, it won't work. By the time I get your sample in an email I can't really tell what you're working with.
    How many spaces are in front of the numbers?
    Are they spaces or another character.

  4. 14448.46
    154962.72
    33519.10
    13693.68

    please give formula to remove space before numbers.

  5. Thank you - finding the code for the space and replacing worked like a charm!

  6. Thank you! Worked perfect for my needs.

  7. how to remove double camma , , ,

  8. Please remove space in right
    like 1Z5582310495718193
    at last 1 space is there I cant remove the space in right

  9. Greetings, does anyone know how to remove spaces in between a numeric text? I've tried Find & Replace, TRIM, and SUBSTITUTE formulas with no success. Following is the data I am working with:
    -90 000
    -123 750
    -132 020
    -58 038
    -135 000

  10. Hi, I have a formula like this "=cell("address",index($B$8:$C$103,MATCH(B9,$B$8:$B$103,0),2))". It gives a result is "$C$9".
    How can I remove the "$" symbol so that will give the result such as "C9"? I want a formula that combines with the above formula.

  11. Hi, please can someone help?
    i am trying to remove space between a chapter number and the header in excel.

    E.g.

    1.0 Space rocket

    I have tried the Trim function with no success.

    • Hello,

      If I understand your task correctly, please try the following formula:

      =LEFT(A1,FIND(" ",A1)-1) & TRIM(MID(A1,FIND(" ",A1),LEN(A1)))

      Hope this will help.

  12. Please help me to to convert 15-196 to 151-96

      • SUPPER!!

  13. Hi,
    when I used below formaula, I can see the leading spaces got removed but trailing spaces still exist.Please suggest to remove trailing spaces also.

    =MID(B2,FIND(MID(TRIM(B2),1,1),B2),LEN(B2))

    • Hello,

      I'm afraid there's no easy way to solve your task with a formula. Using a VBA macro would be the best option here.

      However, since we do not cover the programming area (VBA-related questions), I can advice you to try and look for the solution in VBA sections on mrexcel.com or excelforum.com.

      Sorry I can't assist you better.

  14. This is a fantastic blog post. Thank you so much for helping me with an ongoing problem I've had in excel! I now understand the function better and will be bookmarking this article should I encounter any problems in the future! Thank you so much for writing a clear and concise article - very helpful indeed!

    Best Wishes!
    -Barb

  15. I have a large number of cells each consisting of multiple lines of text ending in a line break. Many cells have a space immediately preceding the line break and I want to include those particular spaces (but no others). I've tried a Find/Replace using a space followed by Control J as the Find criterion but this didn't work. Any suggestions would be appreciated.

  16. Hi, can I check how do I trim the figures as such to derive the section that I would like to have? eg, 344MY/4.15510.7201/AABBCCDDEEEFF - (100) SSS. I only need 4.15510.7201 in the next column.
    Thanks.

    • Hello,

      if your task is to extract the text from between two slashes, you can use this formula:
      =MID(A1, FIND("/",A1)+1, FIND("/",A1, FIND("/",A1)+1)-FIND("/",A1)-1)

      A1 is the cell with your value.
      Hope it helps!

  17. Dear sir,

    How to trim reduce for - & +

    Example -710
    -11151
    +5141
    -5156

    • use absolute function (abs)

  18. Dear sir,

    How to trim reduce for - & +

  19. very good page.......

  20. Hi, I have tried all the method above but still cannot remove the leading spaces. When I used LEN to see how many spaces were there, it showed zero.
    I have attached few data from excel below for your reference. Many thanks.
    350.00
    500.00
    7,867.56-
    6,533.32-

    • =TRIM(CLEAN(SUBSTITUTE(*cell*,CHAR(160), " ")))

      try with this

      • This works!
        Used it to remove a single trailing space in a number column

      • What a fantastic Solution given..... Thanks a lot

      • WHY WE WAS USE CHAR(160),AND LIKE THIS WE HAVE SOME MANY OPTIONS LIKE CHAR(1),CHAR(30),CHAR(144)

      • yes its working thanks alot

      • Thank you! This worked for me!

      • Thanks Boss. It works.

      • This works for me. Thank you a lot. I will like to further learn from you anonymous

    • It helped

    • Working. Thank you so much.

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)