Written by Allen Wyatt (last updated January 6, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365
If Jessica wants to remove extra spaces at the end of a paragraph, she knows she can search for a space followed by ^p and replace it with ^p by itself. This, however, doesn't work for footnotes and endnotes, probably because Word doesn't allow you to "replace" end-of-paragraph markers in such notes. Jessica wonders if there is a way around this limitation so she can easily get rid of trailing spaces in footnotes and endnotes.
It is interesting to note that Word allows you to use Find and Replace to get rid of a trailing space in a paragraph in the body of the document, but it doesn't extend the same capability to footnotes and endnotes—at least not in all versions of Word.
For instance, if you have trailing spaces in both footnotes and endnotes in Word 2007, then Find and Replace works as Jessica experienced—the trailing spaces are unchanged. In Word 2010, Find and Replace gets rid of trailing spaces only in footnotes; it leaves endnotes unchanged. In Word 2013, the behavior is just as it was in Word 2007—spaces remain unchanged in both footnotes and endnotes. If you have Word 2016, then the trailing spaces are removed from both footnotes and endnotes, as they should be. In Word in Microsoft 365, an extra paragraph mark is added to each footnote, but not to endnotes. Quite inconsistent!
If you want to be sure to get rid of all the trailing spaces, there are two approaches you can use. The first is to follow these steps:
Of course, if your footnotes and endnotes are anything other than left justified, then the above steps will mess up that alignment. In such situations (and if you need to get rid of such spaces quite a bit), a macro presents a better approach. Here's a handy one that that will get rid of the trailing spaces in both footnotes and endnotes.
Sub FootEndnoteTrailingSpaces()
Dim fn As Footnote
Dim en As Endnote
For Each fn In ActiveDocument.Footnotes
If Right(fn.Range.Text, 1) = " " Then
fn.Range.Select
Selection.Collapse Direction:=wdCollapseEnd
Selection.TypeBackspace
End If
Next fn
For Each en In ActiveDocument.Endnotes
If Right(en.Range.Text, 1) = " " Then
en.Range.Select
Selection.Collapse Direction:=wdCollapseEnd
Selection.TypeBackspace
End If
Next en
End Sub
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (4833) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, and Word in Microsoft 365.
Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2021 or Microsoft 365. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word Step by Step today!
Hate to take your hands off the keyboard? This tip explains how you can use the keyboard to work with the Find and ...
Discover MoreYou may have boilerplate text that you need to include in your document, and it would be detrimental to accidently change ...
Discover MoreWant a quick, easy way to "search again" for the next occurrence of what you need? Use the technique in this tip and ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2024-01-20 11:39:57
Robert S Davis
I have Word 365. Between my endnotes 36 and 37 there is a large gap that I cannot close. When I clicked on the backward "P" (hidden format symbols) it shows, in front of note 37 and all notes after a tiny black square. I cannot delete the square. Please help. Robert S. Davis genws@hiwaay.net
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments