ContinuationNotice Property Example

This example replaces the current footnote continuation notice with the text "Continued...".

With ActiveDocument.Footnotes.ContinuationNotice
    .Delete
    .InsertBefore "Continued..."
End With