View Single Post
 
Old 09-14-2021, 09:01 AM
ukusprof ukusprof is offline Mac OS X Office 2016 for Mac
Novice
 
Join Date: Sep 2021
Posts: 6
ukusprof is on a distinguished road
Default

Quote:
Originally Posted by TheBigBoss View Post
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
TheBigBoss -

Also forgot to mention to you that this is a series of 1 pg login sheets generated from a merge document; hence the section breaks. Because the logins themselves are sequentially numbered, I want the page numbers to match, 0-15. (Or however many logins I'm generating for the particular course).

Thanks!
Reply With Quote