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, 2021, and Word in Microsoft 365


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, 2021, and Word in Microsoft 365.

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

Non-Printing Hyperlinks

Karen is having problems getting hyperlinks to print in a document on her home computer. There are only a limited number ...

Discover More

Conditionally Formatting Cells Containing Dates

Need to know if a particular cell contains a date value? Excel doesn't have a worksheet function to determine this ...

Discover More

Tracking Changes to Templates

Wouldn't it be great to be able to track what changes are made to a template, over time? Unfortunately, Word doesn't ...

Discover More

Do More in Less Time! An easy-to-understand guide to the more advanced features available in the Microsoft 365 version of Word. Enhance the quality of your documents and boost productivity in any field with this in-depth resource. Complete your Word-related tasks more efficiently as you unlock lesser-known tools and learn to quickly access the features you need. Check out Microsoft 365 Word For Professionals For Dummies today!

More WordTips (ribbon)

Creating a Bibliography from Footnotes

Most scholarly papers need to have both footnotes and a bibliography. The two are closely related, as they provide ...

Discover More

Accessing Footnote Text in a Macro

Using macros you can access just about anything in a Word document. Accessing the text within footnotes is no exception, ...

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 5 - 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.