Getting Rid of Extra Spaces at the End of a Footnote

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


When Thomas is working with documents created by other people, one of the steps he goes through is to delete any spaces that occur just before a hard return. He can use Find and Replace to do this, and thereby get rid of any extra spaces at the end of a paragraph. However, if the extra spaces are at the end of a footnote, Word doesn't really get rid of the spaces. Instead, it replaces the hard return at the end of the footnote with an extra hard return, so Thomas ends up with hard return, space, hard return. He wonders how he can properly get rid of extra spaces at the end of footnotes.

This seems to be a relatively new quirk in Word, and it can be quite frustrating for those who deal with footnotes quite a bit. (It isn't clear which version of Word this behavior cropped up in, but it is definitely there in Microsoft 365.) One possibility is to convert your footnotes to endnotes, then do the deletion, then convert the endnotes back to footnotes. This approach works because Word doesn't exhibit the same quirk with endnotes as it does with footnotes. (Go figure!)

A better approach, however, may be to use a macro to do the space removal. This is an especially good way to go if you need to work with footnote-laden documents often. Here's a very simple macro that may work for you:

Sub RemoveFS()
    ' Removes spaces from the end of paragraphs within footnotes
    Dim f As Footnote

    For Each f In ActiveDocument.Footnotes
        If Right(f.Range.Text, 1) = " " Then
            f.Range.Text = Left(f.Range.Text, Len(f.Range.Text) - 1)
        End If
    Next f
End Sub

Note that the macro checks each footnote to see if it ends in a space. If it does, then it removes that space by simply setting the .Text property for the footnote to drop that last character.

There is a problem with this macro, however. If your footnotes contain formatted characters (bold, italic, etc.), then that formatting is removed. When it comes to footnotes, which are often used for citations to books and articles, this can be a deal breaker. In that case, a better approach is the one used in this macro:

Sub RemoveFS()
    ' Removes spaces from the end of paragraphs within footnotes
    Dim f As Footnote

    For Each f In ActiveDocument.Footnotes
        If Right(f.Range.Text, 1) = " " Then
            f.Range.Select
            Selection.Collapse Direction:=wdCollapseEnd
            Selection.TypeBackspace
        End If
    Next f
End Sub

This macro still checks to see if the footnote ends in a space, but if it does, it selects the footnote, collapses the insertion point to the end of the footnote, and then types a backspace character. Any character formatting within the footnote is left undisturbed.

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 (629) 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

Inserting Hyperlinks

Connect your worksheets with other workbooks or with the world of the Internet. The ability to add hyperlinks makes this ...

Discover More

Customized Tables of Contents

Generating a table of contents is easy in Word. Changing how that table of contents looks is also easy, provided you ...

Discover More

Making All Lines in a Paragraph the Same Height

If the line spacing in a paragraph appears uneven it may result of the combination of a larger character or object pasted ...

Discover More

The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!

More WordTips (ribbon)

Jumping to a Footnote

Jumping to a specific footnote can be very handy if your document has a lot of footnotes in it. Word provides the ...

Discover More

Reference to a Range of Endnotes

When multiple endnote references are used at a given point in your document, you may wonder if there is a way to compress ...

Discover More

Using Multiple References to the Same Footnote

Do you want to have multiple footnote references to the same actual footnote in a document? The easiest way to do this is ...

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 six minus 4?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


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.