View Single Post
 
Old 04-09-2018, 02:48 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,963
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

With the code you're using, the insertion point should show up in the footnote, not in "the page somewhere". Try:
Code:
Sub InsertFootnote()
ActiveDocument.Footnotes.Add Range:=Selection.Range
With Selection.Paragraphs.Last.Range
   .Font.Reset
   .Characters.Last.Previous.Text = ". " & vbTab
   .Characters.Last.Previous.Select
End With
Selection.Collapse wdCollapseEnd
End Sub
Instead of starting each footnote with a tab character before the reference, you really should do a one-off modification of the 'Footnote Text' Style to give it a first-line indent.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote