How to select non-heading paragraphs in Word?
To meet some requirements, we need to select some non-heading paragraphs. Instead of selecting one by one, is there any easier way to select all non-heading paragraphs with one click. This tutorial will introduce you two methods to select non-heading paragraphs.
Select non-heading paragraphs with the VBA
Select non-heading paragraphs 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 non-heading paragraphs with the VBA

Amazing! Use Efficient Tabs in Word (Office) like Chrome, Firefox and New Internet Explorer!
Fortunately, we can use VBA to select non-heading paragraphs. It is an easy way.
Step 1: Press “Alt-F11” to open the Microsoft Visual Basic for Application window;
Step 2: Click Module on the Insert tab, copy and paste the following VBA code into the Module window;
Step 3: Then click Run button to apply the VBA.
The VBA code of selcting non-heading paragraphs
Sub SelectNonHeadingParagraphs()
Dim tempTable As Paragraph
Application.ScreenUpdating = False
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
For Each tempTable In ActiveDocument.Paragraphs
'Debug.Print tempTable.Range.Style & " " & wdStyleHeading1
If tempTable.Style<>ActiveDocument.Styles(wdStyleHeading1) Then
'Debug.Print "aaa"
tempTable.Range.Editors.Add wdEditorEveryone
End If
Next
ActiveDocument.SelectAllEditableRanges wdEditorEveryone
ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
Application.ScreenUpdating = True
End Sub
Note : this method takes Heading1 as an example. You can use other Heading styles to replace heading 1. If the document include several Heading styles, this method is not suitable
Select all non-heading paragraphs with the Kutool for Word
Kutool for Word is most handy way to select non-heading paragraphs. After you have installed Kutool for Word, one click will help you complete the whole operation.
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 >Paragraph Select on the Paragraph Select group. See screenshot
For more detailed information about Select Non-Heading 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.