View Single Post
 
Old 02-20-2023, 03:46 PM
Charles Kenyon Charles Kenyon is offline Windows 11 Office 2021
Moderator
 
Join Date: Mar 2012
Location: Sun Prairie, Wisconsin
Posts: 9,536
Charles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant futureCharles Kenyon has a brilliant future
Default

Quote:
Originally Posted by RRB View Post
Thank you very much for responding to my question I never knew that section breaks take a heavy toll on formatting! Wow!
What I'm trying to accomplish is that one ever there is a certain style this should indicate word to begin footnote numbering anew via the option in footnotes to start the numbering in each section from one.
Any novel ideas?
Thank you again
Susan
OK
No way to do that with a Style.

You do need a Section Break to restart footnote numbering.
  • You could put that break together with text in a style and save it as AutoText or a Building Block. That could be attached to a Keyboard shortcut.
Here is a macro to insert such a break. It was simply recorded. A macro could also apply a paragraph style after the section break if you want.
Code:
Sub SectionBreakOddPageInsert()
' Charles Kenyon 2023-02-20
    Selection.InsertBreak Type:=wdSectionBreakOddPage
End Sub
Instructions for Installing Macros from Forums or Websites by Graham Mayor, MVP


By the way, I added renumbering footnotes to the list of reasons for a Section break on my web pages. Thank you.
Reply With Quote