How to select all word objects in Word?
Sometimes we insert some word document objects in Word document. How to select all inserted word document objects in Word? This tutorial will guide you to select all embedded word document objects.
Select all embedded word document objects with the VBA
Select all embedded word document objects with Kutool for Word
Office Tab: Enable Tabbed Editing and Browsing in Office, Just Like Chrome, Firefox, IE 8/9/10. Read more...
Classic Menu for Office: Bring Classic Menus and Toolbars of Office 2003/XP/2000 Back to Office 2007, 2010 and 2013. Read more...
Select all embedded word document objects with the VBA
Instead of selecting one by one, the VBA is an easier way to select all embedded word document objects
VBA code can select all embedded word document objects, do as follows:
Step 1: Press Alt+F11 to open VBA window;
Step 2: Click Module from Insert tab, put the code into Module window;
Step 3: Click Run
button or press F5 to apply the VBA.
The VBA code to select all word document objects:
Sub SelectAllEmbedWordObject()
Dim tempTable As InlineShape
Application.ScreenUpdating = False
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
For Each tempTable In ActiveDocument.InlineShapes
If InStr(tempTable.OLEFormat.ProgID, "Word") = 1 Then
tempTable.Range.Paragraphs(1).Range.Editors.Add wdEditorEveryone
End If
Next
ActiveDocument.SelectAllEditableRanges wdEditorEveryone
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
Application.ScreenUpdating = True
End Sub
Select all embedded word document objects with Kutool for Word
Actually, there is a more convenient and quicker way to select all inserted word document objects in Word. You do not need to study VBA. After installing Kutool for Word, only one click will help you quickly select all embedded word document objects in whole document or in the selection.
Kutools for Word, a handy add-in, includes groups of tools to ease your work and enhance your ability of processing word document. Free Trial for 45 days! Get It Now!
Click Kutools > click Paragraph Select in Paragraph group > click Select All Embedded Word Objects Paragraphs from drop down list. See screenshot:

Note: if you make a selection in the document first, this tool will only select all embedded word document objects of the selection.
For more detailed information about Select Embed Word Object Paragraphs of Kutools for Word. please visit: Paragraph Select feature description
Kutools for Word
More than 100 Advanced Functions for Word 2003, 2007, 2010 and 2013






