Written by Allen Wyatt (last updated January 6, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021
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, Word in Microsoft 365, and 2021.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
One change introduced in Word 2010 was the new navigation pane that is used for simple searching of information. This ...
Discover MoreWord makes it easy, using Find and Replace, to replace or delete information based on its formatting. Whether this ...
Discover MoreThe Find and Replace capabilities of Word can be very powerful, but there are some things you cannot search for. One such ...
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 © 2024 Sharon Parq Associates, Inc.
Comments