View Single Post
 
Old 05-11-2019, 10:07 AM
Ramses505 Ramses505 is offline Windows 7 64bit Office 2010
Novice
 
Join Date: May 2019
Posts: 1
Ramses505 is on a distinguished road
Default Loop through Footnote Reference Marks

I have some code that loops through the actual Footnotes that looks like this;
Code:
Sub Test_Format_Footnote()
Dim f As Footnote

For Each f In ActiveDocument.Footnotes
  With f.Range.Characters(1)
    If .Text = vbTab Or .Text = " " Then 'Use any other sensible detection logic here
      .Text = vbTab
    Else
      .InsertBefore "Look Here !"
    End If
  End With
Next
End Sub

How do I loop through the Footnote Reference Marks; the numbers in the text linking to the actual footnote ?


I would like to change the format of them on several ways - I would also like to know how to just loop through them for future reference.


Thanks
Reply With Quote