bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Footnotes and Endnotes > Moving Footnote Text into the Document

Moving Footnote Text into the Document

Summary: Footnotes are great for documenting information in the main part of the document. What if you want to move the information into the main document, however? You can either do it manually, or use the much easier automatic approach covered in this tip. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

Footnotes are used quite often in some types of documents, such as scholarly papers or those where it is important to document supporting information. If you have a footnote whose text you want to move into the main body of the document--and thereby do away with the footnote--then you typically follow these steps:

  1. Select all the text in the footnote.
  2. Press Ctrl+X to cut the selected text to the Clipboard.
  3. Position the insertion pointer before the footnote reference.
  4. Press Ctrl+V to paste the text into the document.
  5. Delete the footnote reference, thereby removing the footnote.

Doing this once or twice is OK; doing it many times can be a pain. The solution to make the process faster is to use a macro. The following macro essentially automates the above steps:

Sub MoveFootnote()
    If Selection.Footnotes.Count = 1 Then
        Selection.Footnotes(1).Range.Copy
        Selection.Collapse direction:=wdCollapseStart
        Selection.Paste
        Selection.MoveRight Unit:=wdCharacter, Count:=1, Extend:=wdExtend
        Selection.Delete Unit:=wdCharacter, Count:=1
    End If
End Sub

In order to use the macro, select the footnote reference before you run it. The macro checks to make sure that there is a single footnote reference in the selection. If there is, it copies the footnote text, pastes it in front of the footnote reference, and then deletes the footnote reference. The result is that you move the footnote text into the document at the same point where the footnote reference used to be.

Tip #313 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003


Save Time! WordTips has been published weekly since early 1997. Past issues are available in convenient WordTips archives. Have your own enhanced archive of WordTips at your fingertips, available to use at any time!
 
Check out WordTips Archives today!

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home

WordTips FAQ
WordTips Premium

Learn Access Now

Bugs and Pests Tips
ExcelTips
Family Tips
Health Tips
Home Tips
Organizing Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)