View Single Post
 
Old 06-07-2017, 02:29 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,106
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 are overthinking this. Try the following

Code:
Sub footnoteCharacters()
'Graham Mayor - http://www.gmayor.com - Last updated - 07 Jun 2017 
Dim oFNote As Footnote
Dim oRng As Range
Dim i As Integer, j As Integer
    For i = ActiveDocument.Footnotes.Count To 1 Step -1
        Set oFNote = ActiveDocument.Footnotes(i)
        Set oRng = oFNote.Reference.Characters.Last
        oRng.Text = " £$%" & oFNote.Range.Text & "%$£"
        DoEvents
    Next i
lbl_Exit:
    Set oFNote = Nothing
    Set oRng = Nothing
    Exit Sub
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