![]() |
|
|
|
#1
|
|||
|
|||
|
I have a document with footnotes: it also contains section breaks. The last note in one section is number 31: so far so good. There follows a section without footnotes. Then a new section starts and Word has numbered the first note 36, both the note reference in the text and at the foot of the page. I have read that this can happen when tracking changes, but I have accepted all changes in the document and the numbering problem persists. When I tried to restart numbering at '32' and apply that to this section, the note was renumbered '67' if I select 'continuous' and '1' if I select 'restart each section!!!
I am using MSWord 2013 with Windows 10 and I am totally bewildered. |
|
#2
|
||||
|
||||
|
You could try resetting each footnote using a macro
Code:
Sub Macro1()
Dim oFN As Footnote
For Each oFN In ActiveDocument.Footnotes
oFN.Reference.Select
With Selection
With .FootnoteOptions
.Location = wdBottomOfPage
.NumberingRule = wdRestartContinuous ' wdRestartPagewdRestartSection
.StartingNumber = 1
.NumberStyle = wdNoteNumberStyleArabic
.LayoutColumns = 0
End With
.Footnotes.Add Range:=Selection.Range, Reference:=""
End With
Next oFN
Set oFN = Nothing
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Footnote numbering problem within single section
|
jsswadley | Word | 2 | 03-17-2015 04:44 PM |
| Multilevel Numbering wrong after Section Break | Kay Wood | Word | 2 | 01-16-2013 08:44 AM |
| URGENT: Mail 'Merge To New Doc' restarts paragraph numbering at each Section break | JamesF | Mail Merge | 0 | 07-28-2011 07:26 AM |
Section Break Continuous: doesn't affect the format of the page numbering
|
Jamal NUMAN | Word | 2 | 06-22-2011 04:46 PM |
Page numbering starting on 2 after section break
|
pamm13 | Word | 1 | 06-22-2011 11:10 AM |