Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Collapsing and Expanding Subdocuments
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:
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
Create Rock-Solid Lists! Bulleted and numbered lists can help make your writing clearer and easier to follow. If not done properly, however, they can be a nightmare to work with. Discover the ins and outs of Word's lists with this great reference available in two versions.