View Single Post
 
Old 03-17-2020, 11:18 PM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,103
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

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
Reply With Quote