How do I create a new footnote reference mark?

  • Thread starter Thread starter TL
  • Start date Start date
T

TL

My boss likes to use parentheses around the numbers for footnotes. I would
like to know if there is a way I can create a numbering format, using
continuous numbering, with parentheses around the numbers? If so, how do I do
this?
 
Hi TL,

Assuming you're using proper Word footnotes, you could run the following macro periodically:

Sub FootnoteBracketer()
Dim oFtNt As Footnote
For Each oFtNt In ActiveDocument.Footnotes
With oFtNt.Reference
If .Characters.First.Previous <> "(" Then .InsertBefore "("
If .Characters.Last.Next <> ")" Then .InsertAfter ")"
.Characters.First.Font.Superscript = True
.Characters.Last.Font.Superscript = True
End With
Next
End Sub
 
I think it was just yesterday someone (responding to a question about
"footnotes in Arabic") suggested a Find-Replace with wildcards.

Hi TL,

Assuming you're using proper Word footnotes, you could run the following macro periodically:

Sub FootnoteBracketer()
Dim oFtNt As Footnote
For Each oFtNt In ActiveDocument.Footnotes
  With oFtNt.Reference
    If .Characters.First.Previous <> "(" Then .InsertBefore "("
    If .Characters.Last.Next <> ")" Then .InsertAfter ")"
    .Characters.First.Font.Superscript = True
    .Characters.Last.Font.Superscript = True
  End With
Next
End Sub

--
Cheers
macropod
[Microsoft MVP - Word]



TL said:
My boss likes to use parentheses around the numbers for footnotes. I would
like to know if there is a way I can create a numbering format, using
continuous numbering, with parentheses around the numbers? If so, how do I do
this?-
 
Back
Top