How to select all embedded objects in Word?
If you need to select all embedded objects in Word, how do you select? Now this tutorial will introduce you following methods to select all embedded objects in the whole document or the selection of the document.
Select all embedded objects with the VBA
Select all embedded objects with Kutool for Word
Select all embedded objects with the VBA
Office Tab: Brings tabbed interfaces to Word, Excel, PowerPoint...![]() |
Enhance your workflow now. Read More Free Download
|
Instead of select embedded objects one by one, the VBA is an easier way to select all embedded objects.
VBA code can select all embedded 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 embedded objects:
Sub SelectAllEmbedObjects()
Dim tempTable As Object
Application.ScreenUpdating = False
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
For Each tempTable In ActiveDocument.InlineShapes
tempTable.Range.Paragraphs(1).Range.Editors.Add wdEditorEveryone
Next
ActiveDocument.SelectAllEditableRanges wdEditorEveryone
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
Application.ScreenUpdating = True
End Sub
Select all embedded objects with Kutool for Word
It is painful and time consuming to select all embedded objects one by one, if you are not good at Macro. It is so complicated to use VBA to select all objects. Now recommend you an easier way to select all embedded objects. With one click, you can select all objects in the whole document or a part of the document.
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 Paragraph from drop down list. See screenshot:
Note: if you only want to select all objects from a selection of the document, please select a part of the document first, and then apply this tool.
For more detailed information about Select Embed Object Paragraphs of Kutools for Word. please visit: Paragraph Select feature description
Best Office Productivity Tools
Kutools for Word - Elevate Your Word Experience with Over 100 Remarkable Features!
Dive into the highlighted features below or click here to explore the full power of Kutools for Word.
📘 Document Mastery: Split Pages / Merge Documents / Export Selection in Various Formats (PDF/TXT/DOC/XLSX) / 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 our Insert Group
🔍 Precision Selections: Pinpoint specific pages / tables / shapes / heading paragraphs / Navigate with ease using our Select Group
⭐ Star Enhancements: Navigate swiftly to any location / auto-insert repetitive text / seamlessly toggle between document windows / 11 Conversion Tools ...
Transform your Word tasks with Kutools. 👉 Download with 30-day trial Now 🚀.
