View Single Post
 
Old 11-01-2013, 11:04 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi Claire,
Quote:
Originally Posted by ClaireB View Post
(where did you find that article???)
Umm, on that website...

For future documents, you might also like to try the following macro:
Code:
Sub EndnoteSetup()
With Selection
  With .EndnoteOptions
    .Location = wdEndOfSection
    .NumberingRule = wdRestartContinuous
    .StartingNumber = 1
    .NumberStyle = wdNoteNumberStyleArabic
  End With
  With .PageSetup
    .SuppressEndnotes = True
  End With
End With
End Sub
To use the macro on an existing document, position your 'Notes' heading as indicated in the attachment to this post, with Section breaks either side. Then select all of the Sections that precede your 'Notes' heading and run the macro.

For PC-based installation & usage instructions, see: http://www.gmayor.com/installing_macro.htm
For Mac macro installation & usage instructions, see: https://wordmvp.com/Mac/InstallMacro.html
Attached Files
File Type: docx TEST manuscript 6x9 Three chapters.docx (295.3 KB, 45 views)
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote