Written by Allen Wyatt (last updated November 27, 2023)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and 2021
Paul is trying to use Word VBA to return the footnote number of the footnote in which the insertion point is located. In his case, it is possible that the footnote contains more than one paragraph. Paul wonders if there is a way to determine this footnote number in VBA.
It is possible to determine a footnote number by using the Index property of a footnote object. Here's a quick way to demonstrate how this info can be useful:
Sub GetFootnoteNumber()
Dim f As Footnote
Dim sTemp As String
sTemp = "The insertion point is not in a footnote"
For Each f In ActiveDocument.Footnotes
If Selection.InRange(f.Range) Then
sTemp = "The insertion point is in footnote " & f.Index
End If
Next
MsgBox sTemp
End Sub
Note that the macro steps through each footnote in the document. If it is determined that the selection (insertion point) is in a particular footnote, then the Index property of that footnote is used to put a message in the sTemp variable. Once done looping through the footnotes, the sTemp variable is displayed in a message box.
If you have a lot of footnotes in your document, you might not want to loop through all of them. In that case, you can use the Information property of the selection to determine if the insertion point is currently in a footnote, in this manner:
Sub GetFootnoteNum()
Dim J As Integer
Dim sTemp As String
sTemp = "The insertion point is not in a footnote"
If Selection.Information(wdInFootnote) Then
J = Selection.Paragraphs(1).Range.Footnotes(1).Index
sTemp = "The insertion point is in footnote " & J
End If
MsgBox sTemp
End Sub
In addition, you can derive other information about a particular footnote by expanding what properties of that footnote you access. The following macro returns not only the footnote number, but also the numbering rule, the numbering style, and the starting number for the footnotes:
Sub GetFootnoteInfo()
Dim f As Footnote
Dim sTemp As String
sTemp = "The insertion point is not in a footnote"
If Selection.Information(wdInFootnote) Then
Set f = Selection.Paragraphs(1).Range.Footnotes(1)
sTemp = "Footnote number: " & f.Index & vbCr
With f.Range.FootnoteOptions
sTemp = sTemp & "Numbering Rule: " & .NumberingRule & vbCr & _
"Numbering Style: " & .NumberStyle & vbCr & _
"Starting Number: " & .StartingNumber
End With
End If
MsgBox sTemp
End Sub
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (5906) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and 2021.
Do More in Less Time! An easy-to-understand guide to the more advanced features available in the Microsoft 365 version of Word. Enhance the quality of your documents and boost productivity in any field with this in-depth resource. Complete your Word-related tasks more efficiently as you unlock lesser-known tools and learn to quickly access the features you need. Check out Microsoft 365 Word For Professionals For Dummies today!
Need to find out the day of the year for a particular date? It's easy to do if you are using a macro. All you need to do ...
Discover MoreThe heart of creating powerful programs in VBA is to understand how to create subroutines. These structures allow you to ...
Discover MoreIf you are working with dates in a macro, you may need to determine which week of the year a date falls within. This can ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2020-04-19 05:07:51
Ken
A selection can contain more than one paragraph and you need to specify specify which. If the selection is only only part of a paragraph or is an insertion point in the paragraph, then you must still specify the first (1) and you will get the the whole paragraph.
In a similar way, a range could contain multiple footnotes so you need to specify the first even though in this case it will have only one.
The logic of the compound statement is:
"Selection.Paragraphs(1)" gives a Paragraph object
".Range" gives the range of the paragraph
".Footnotes(1)" gives the Footnote object of the first footnote in the range
".Index" gives the index number of the Footnote object.
2020-04-18 04:51:08
Simon Freeman
I am a bit puzzled. Why the "1" in brackets after Paragraphs and Footnotes in: "Set f = Selection.Paragraphs(1).Range.Footnotes(1)"? Thanks.
Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2025 Sharon Parq Associates, Inc.
Comments