Removing Leading Spaces in a Table

Written by Allen Wyatt (last updated February 17, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021


1

Sometimes when Eileen converts text to a table or if she imports a table from another program, some of the cells have a leading space in them, before the first actual character. She wonders if there is a way to use Find and Replace to remove these leading spaces only in the cells of the table.

There's actually one very quick way to get rid of the leading spaces without the need to use Find and Replace. Let's assume that you want the text in the cells to be left-aligned. Follow these steps:

  1. Select the cells you want to affect in the table.
  2. Display the Home tab of the ribbon.
  3. Click the Center Text tool in the Paragraph group. All of the text in the selected cells is now centered.
  4. Click the Align Text Left tool in the Paragraph group.

That's it; when you perform step 3, the leading spaces are removed automatically by Word. Step 4 simply puts your text back to where you originally wanted it aligned. An extra bonus is that these steps actually remove any white space at the beginning of the text, not just spaces.

If you absolutely want to use Find and Replace to get rid of the spaces, you cannot do it using a single Find and Replace operation. Here's an idea of how you can do it using multiple passes:

  1. Select the table.
  2. Press Ctrl+H. Word displays the Replace tab of the Find and Replace dialog box.
  3. Click the More button if it is available. (See Figure 1.)
  4. Figure 1. The Replace tab of the Find and Replace dialog box.

  5. Erase anything in the Find What box, but make sure the insertion point is still in the box.
  6. Click the Format button and then click Style. Word displays the Find Style dialog box. (See Figure 2.)
  7. Figure 2. The Find Style dialog box.

  8. Select the style used by the text in the table. (There's a good chance this will be the Normal style.)
  9. In the Replace With box, enter $#$^&. This specifies you want to preface whatever is found (which is any text formatted with the style you chose in step 6) with a unique set of characters ($#$).
  10. Click Replace All.
  11. In the Find What box, enter $#$^w. This specifies that you want to find the unique characters followed by any white space. (This includes your leading spaces.)
  12. Click the No Formatting button.
  13. Delete anything in the Replace With box.
  14. Click Replace All.
  15. In the Find What box, enter $#$. This specifies that you want to find any remaining unique characters.
  16. Click Replace All.

You could, if desired, also use a macro to remove leading spaces. All the macro needs to do is to step through all the cells in a table and trim off any leading spaces:

Sub DeleteCellLeadingSpace()
    Dim aCell As Cell
    Dim aRow As Row
    Dim cText As String

    If Selection.Information(wdWithInTable) Then
        For Each aRow In Selection.Tables(1).Rows
            For Each aCell In aRow.Cells
                cText = aCell.Range.Text
                cText = LTrim(cText)
                aCell.Range.Text = Left(cText, Len(cText) - 2)
            Next aCell
        Next aRow
    Else
        MsgBox "Insertion point must be in a table."
    End If
End Sub

Note that when this macro stuffs information back into a cell (from the cText variable), it only stuffs back everything but the final two characters. If you don't do this, you'll end up with an additional hard return in each cell of the table.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (1263) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

AutoSave and DOC Files

The newest versions of Word have a feature called AutoSave, which should not be confused with the much older version of ...

Discover More

Use Filenames That Sort Properly

When storing your Excel workbook, you need to specify a file name to be used for the workbook. Take a moment to consider ...

Discover More

Adding Ordinal Notation to Dates

Want to add an ordinal suffix to a number, as in 2nd, 3rd, or 4th? Excel doesn't provide a way to do it automatically, ...

Discover More

Do More in Less Time! Are you ready to harness the full power of Word 2013 to create professional documents? In this comprehensive guide you'll learn the skills and techniques for efficiently building the documents you need for your professional and your personal life. Check out Word 2013 In Depth today!

More WordTips (ribbon)

Noting Table Rows Containing a Character

If you want to have Word highlight rows in a table that contain a certain character, you need to resort to using a macro. ...

Discover More

Drop Shadows for Tables

When adding borders and shading to a document's elements, Word allows you to quickly add drop shadows to paragraphs, text ...

Discover More

Differing Column Widths when Pasting

When you move information from one table to another, you may be faced with the problem of making that information fit ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is two more than 7?

2024-02-18 04:34:47

Ron S

A faster version of the the first tip is using shortcuts:
1. select the text
2. <CTL><E> (center align), <CTL><L> (left align)

That's it. Removes leading spaces and tabs.
Works on regular body text that is not in a table. (that is where I normally use it)

Actually, if you are repeatedly importing text from that web page to refresh you data a more round about approach may be better.

In Excel you can use PowerQuery to import that data, "data clean" it removing spaces and any other repetitive corrections it needs.

Save the Excel file

(first time only) Copy and Paste with link from Excel into Word.


I don't know if the PowerQuery refresh, to import new data and apply all data cleaning, works through the link. You MAY have to open the Excel file to refresh the linked data.


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.