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
Recommended Productivity Tools for Word
More Than 100 Powerful Advanced Features for Word, Save 50% Of Your Time. Free Download
Bring Tabbed Editing And Browsing To Office (Include Word), Far More Powerful Than The Browser's Tabs. Free Download
Select all embedded word document objects with the VBA

Amazing! Use Efficient Tabs in Word (Office) like Chrome, Firefox and New Internet Explorer!
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
Recommended Word Productivity Tools
Kutools For Word - More Than 100 Advanced Features For Word, Save Your 50% Time
- Complicated and repeated operations can be done one-time processing in seconds.
- Insert multiple images across folders into Word document at once.
- Merge and combine multiple Word files across folders into one with your desired order.
- Split the current document into separate documents according to heading, section break or other criteria.
- Convert files between Doc and Docx, Docx and PDF, collection of tools for common conversions and selection, and so on...
You are guest
or post as a guest, but your post won't be published automatically.
Be the first to comment.