![]() |
|
|||||||
|
|
Thread Tools | Display Modes |
|
#10
|
|||
|
|||
|
By modifying slightly
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
With RngTgt
.Collapse wdCollapseStart
.FormattedText = RngSrc.FormattedText
.InsertBefore " ###"
.Collapse wdCollapseEnd
.InsertAfter "###"
.Font.Reset
End With
.Delete
End With
Next
End With
Set RngSrc = Nothing: Set RngTgt = Nothing
Application.ScreenUpdating = True
End Sub
|
| Tags |
| footnotes |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Make macro available to all PPT presentations | djlee | PowerPoint | 2 | 02-11-2015 12:52 PM |
Help make Macro Please
|
ddaniels | Word VBA | 1 | 01-13-2015 05:36 PM |
VBA code for Microsoft Word macro — select text and insert footnote
|
ndnd | Word VBA | 10 | 01-06-2015 01:47 PM |
| Macro to find text only footnote numbers | TimFromPhx | Word VBA | 7 | 04-10-2014 07:05 PM |
How to make an add-in/global macro
|
hanvyj | Excel Programming | 4 | 12-14-2012 03:23 AM |