![]() |
|
|
Thread Tools | Display Modes |
#2
|
||||
|
||||
![]()
You can't do that via Find/Replace, but it can be done via a macro:
Code:
Sub MoveFootNotes() Application.ScreenUpdating = False Dim RngSrc As Range, RngTgt As Range, f As Long With ActiveDocument For f = .Footnotes.Count To 1 Step -1 With .Footnotes(f) Set RngSrc = .Range Set RngTgt = .Reference RngSrc.End = RngSrc.End - 1 RngTgt.Collapse wdCollapseStart RngTgt.FormattedText = RngSrc.FormattedText .Delete End With Next End With Set RngSrc = Nothing: Set RngTgt = Nothing Application.ScreenUpdating = True End Sub For Mac macro installation & usage instructions, see: Word:mac - Install a Macro
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
Apologist | Word VBA | 2 | 03-24-2019 02:54 AM |
How do I edit my TOC to reference the section numbers instead of the page numbers??? | mikey386 | Word | 0 | 12-17-2014 02:34 PM |
Trying to link page numbers in the footer, but refuses to link after new section | fl0shizzle | Word | 7 | 05-06-2014 12:15 PM |
![]() |
wmac | Word | 1 | 05-14-2013 08:54 PM |
How do I refer to page numbers, when the numbers change as I prepare the document? | StevenD | Word | 5 | 11-29-2012 12:52 AM |