Written by Allen Wyatt (last updated May 24, 2025)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365
Michel is editing a document that has, within the text, information that really should be in footnotes. He wonders if there is an easy way to select the text, have a footnote automatically created, and the selected text be moved to the footnote.
This can, of course, be done manually. All you need to do is to follow these general steps:
If you have to do this process quite a bit, you could automate it by creating a macro that does the same things. (Well, the same things except for steps 1 and 5—you will still need to select the text you want moved to the footnote and you will still need to format it once it is in the footnote.)
Sub TextToFootnote() Dim sTemp As String sTemp = Selection Selection.Delete Selection.TypeBackspace ActiveDocument.Footnotes.Add Range:=Selection.Range, Text:=sTemp End Sub
The macro copies whatever text you selected into the sTemp variable. It then deletes the selection, types a backspace, and inserts a footnote that is equivalent to the text stored in sTemp. Note that since the macro backspaces after deleting the text from the main document, it assumes that what you selected (and what is being moved to the footnote) does not include the leading space.
You can, of course, make the macro more usable by assigning a shortcut key to it or adding it to the Quick Access Toolbar. Either method will allow you to easily move text from the body of the document into the footnotes.
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13591) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Word in Microsoft 365.
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!
Need to change the appearance of the text in your comments? It's easy to do using techniques you are already familiar with.
Discover MoreGot a document with lots of comments in it? You can navigate from comment to comment with ease by using the Go To tab of ...
Discover MoreWord makes it easy to calculate the number of words in a document. If you want to count words only in your comments, then ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2025-05-27 03:57:30
Alan
After pasting use the shortcut/accelerator: Ctrl key followed by 'T' for Keep Text Only so it formats per the footnote rather than copies formatting from the body text.
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