Skip to main content

How to select all footnotes in a Word document?

Normally, when selecting the whole Word document with Ctrl + A keys, all footnotes will be excluded from the selection. If you just want to select all footnotes in the document, how can you do? This article provides three methods for you to solve this problem.

Select all footnotes in a document with Ctrl + A

Select all footnotes in a document with Select Text With Similar Formatting feature

Select all footnotes in a document with VBA code


Select all footnotes in a document with Ctrl + A

You can use the hotkey Ctrl + A to select all footnotes at once in a Word document. Please do as follows.

Click to put your cursor at any footnote of your document, press the Alt + A keys simultaneously, then all footnotes in current document are selected immediately.


Select all footnotes in a document with Select Text With Similar Formatting feature

The Select Text with Similar Formatting feature can help to select all footnotes in a document.

1. Click to put your cursor at any footnote of your document.

2. In the Home tab, click Select > Select All Text With Similar Formatting. See screenshot:

Then all footnotes in current document are selected immediately.


Select all footnotes in a document with VBA code

The following VBA code can also help to select all footnotes in a document at the same time. Please do as follows.

1. In the document you will select all footnotes, press the Alt + F11 keys to open the Microsoft Visual basic for Applications window.

2. In the Microsoft Visual Basic for Applications window, click Insert > Module, then copy below VBA code into the Module window. See screenshot:

VBA code: Select all footnotes in a Word document

Sub SelectAllFootnoteTexts()
    Dim xDoc As Document
    Dim xRange As Range
    Set xDoc = ActiveDocument
    If xDoc.Footnotes.Count > 0 Then
        Set xRange = xDoc.Footnotes(1).Range
        xRange.WholeStory
        xRange.Select
    End If
End Sub

3. Then press the F5 key to run this code. All footnotes in current document are selected at once.


Related articles:

Best Office Productivity Tools

Kutools for Word - Elevate Your Word Experience with Over 100 Remarkable Features!

🤖 Kutools AI Assistant: Transform your writing with AI - Generate Content  /  Rewrite Text  /  Summarize Documents  /  Inquire for Information based on Document, all within Word

📘 Document Mastery: Split Pages  /  Merge Documents  /  Export Selection in Various Formats (PDF/TXT/DOC/HTML...)  /  Batch Convert to PDF  /  Export Pages as Images  /  Print Multiple Files at once...

Contents Editing: Batch Find and Replace across Multiple Files  /  Resize All Pictures  /  Transpose Table Rows and Columns  /  Convert Table to Text...

🧹 Effortless Clean: Sweap away Extra Spaces  /  Section Breaks  /  All Headers  /  Text Boxes  /  Hyperlinks  /  For more removing tools, head to our Remove Group...

Creative Inserts: Insert Thousand Separators  /  Check Boxes  /  Radio Buttons  /  QR Code  /  Barcode  /  Diagonal Line Table  /  Equation Caption  /  Image Caption  /  Table Caption  /  Multiple Pictures  /  Discover more in the Insert Group...

🔍 Precision Selections: Pinpoint specific pages  /  tables  /  shapes  /  heading paragraphs  /  Enhance navigation with more Select features...

Star Enhancements: Navigate swiftly to any location  /  auto-insert repetitive text  /  seamlessly toggle between document windows  /  11 Conversion Tools...

👉 Want to try these features? Kutools for Word offers a 60-day free trial, with no limitations! 🚀
Free Download     Read More     Buy Now
 

 

Comments (2)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Hi
How can I select all the footnotes reference in current page in Word VBA

Thanks.
This comment was minimized by the moderator on the site
Hi hadi,
Sorry can help you with that. Thank you for your comment.
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations