Beneficial said:
When typing a document and adding either footnotes or endnotes,
it is necessary to scroll back to the document when the footnote is
typed. I would like to have a keystroke to return me to the document
rather than having to scroll to get back to where I left off typing.
Hi,
You can also use a macro, and have the same macro insert the footnote, and return to the text -- see below.
That way, you can use the same keyboard shortcut for both.
The InsertFootnoteNow command (Alt+Ctrl+F) used to work like this in older versions (before Word2000?).
Greetings,
Klaus
If Selection.StoryType = wdFootnotesStory Then
' return to main text:
With ActiveWindow
Select Case .ActivePane.View.Type
Case wdPrintView, wdReadingView, _
wdWebView, wdPrintPreview
.View.SeekView = wdSeekMainDocument
Case Else
.ActivePane.Close
End Select
End With
If Selection.Characters.Last.Style = _
ActiveDocument.Styles(wdStyleFootnoteReference) Then
Selection.Move Unit:=wdCharacter, Count:=1
End If
Else
' insert footnote:
Selection.Footnotes.Add Range:=Selection.Range
End If