View Single Post
 
Old 08-10-2025, 03:44 PM
macropod's Avatar
macropod macropod is offline Windows 10 Office 2016
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,465
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

You could use a macro like the following:
Code:
Sub InsertFootnote()
Dim Rng As Range: Set Rng = Selection.Range
Application.Dialogs(wdDialogInsertFootnote).Execute
Rng.End = Rng.End + 1: Rng.InsertBefore "[": Rng.InsertAfter "]": Rng.Style = wdStyleFootnoteReference
Selection.Start = Selection.Start - 1
Set Rng = Selection.Range: Rng.Collapse wdCollapseStart
Rng.Start = Rng.Start - 1: Rng.InsertBefore "[": Rng.InsertAfter "]": Rng.Style = wdStyleFootnoteReference
Selection.Collapse wdCollapseEnd
If ActiveWindow.ActivePane.View.Type = wdPrintView Or ActiveWindow. _
  ActivePane.View.Type = wdWebView Or ActiveWindow.ActivePane.View.Type = wdPrintPreview Then
  ActiveWindow.View.SeekView = wdSeekFootnotes
Else
  ActiveWindow.View.SplitSpecial = wdPaneFootnotes
End If
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote