View Single Post
 
Old 06-26-2019, 03:11 PM
gmaxey gmaxey is offline Windows 10 Office 2016
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,617
gmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nicegmaxey is just really nice
Default

Maybe:
Code:
Sub ConvertFootnotesEndnotes02()
Dim CertainFN As Footnote
  For Each CertainFN In ActiveDocument.Footnotes
    If InStr(CertainFN.Range.Text, "$$$") > 0 Then
      CertainFN.Range.Text = Replace(CertainFN.Range.Text, "$$$", "§§§")
      CertainFN.Reference.Footnotes.Convert
    End If
  Next CertainFN
lbl_Exit:
  Exit Sub
End Sub
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote