I wonder if the code below is the fastest method to format footnote reference marks. Thanks!
Code:
For Each NumRif In ActiveDocument.Footnotes
NrPres = NrPres + 1
Set myRange = ActiveDocument.Footnotes(NrPres).Reference
myRange.Style = ActiveDocument.Styles("MyStyle")
myRange.Font.Color = wdColorBlue
Next NumRif
NumRif = 0
NrPres = 0