View Single Post
 
Old 05-01-2019, 12:11 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,521
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Quote:
Originally Posted by Stefan Blom View Post
The following two macros remove the superscript from the footnote number and adds a tab stop.
It also adds a period after the footnote number. Neither may be desirable, in which case, change:
Code:
With Selection
    .Paragraphs(1).Range.Font.Reset
    .Paragraphs(1).Range.Characters(2) = ""
    .InsertAfter "." & vbTab
    .Collapse wdCollapseEnd
End With
to:
Code:
With Selection
  .Start = .Start - 1
  .Text = vbTab
  .Collapse wdCollapseEnd
End With
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote