![]() |
|
#3
|
|||
|
|||
|
This code works perfectly for reference marks in the main document, but leaves all reference marks untouched in the footnote section. Can anyone help? Thanks a lot!
Code:
Sub FootnoteMark()
'Format Reference Mark in Main Document and Footnote Section
Dim oStory As Range
Dim FtNt As Footnote
For Each oStory In ActiveDocument.StoryRanges
For Each FtNt In ActiveDocument.Footnotes
With FtNt.Reference.Font
.Superscript = True
.Position = 0
End With
Next
Next oStory
Set oStory = Nothing
End Sub
Last edited by RobiNew; 09-19-2023 at 07:48 AM. Reason: formatting |
| Tags |
| ref mark ftnt sec |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Removing line break and indentation between footnote number and footnote text in Word
|
jaanross | Word | 5 | 02-06-2020 12:04 AM |
Footnote reference numbers precede by superscript '(' and follow w/ superscript ')'
|
Swarup | Word | 4 | 07-18-2019 05:51 PM |
How do I fix this unknown problem? Right-angle marks in corners - crop marks
|
Quillo1234 | Word | 2 | 07-20-2016 02:24 AM |
How to keep the footnote(endnote) reference numbers when pasting text between two documents?
|
gn4619 | Word | 4 | 10-22-2015 08:01 AM |
| Get footnote reference | GLENCOE | Word VBA | 1 | 04-07-2015 04:08 AM |