View Single Post
 
Old 09-14-2021, 08:42 AM
TheBigBoss TheBigBoss is offline Windows 7 32bit Office 2010 32bit
Advanced Beginner
 
Join Date: Dec 2016
Posts: 56
TheBigBoss is on a distinguished road
Default

Hi mate,

Try Footnotes.NumberingRule
Footnotes.NumberingRule property (Word) | Microsoft Docs

Then do a basic loop through sections and restart numbering (I haven't tried it but I think that's what you need)

Set myRange = ActiveDocument.Sections(1).Range
If myRange.Footnotes.NumberingRule = wdRestartSection Then
myRange.Footnotes.NumberingRule = wdRestartPage
End If
Reply With Quote