Javascript required
Skip to content Skip to sidebar Skip to footer

How to Delete a Paragraph Mark in Word

How to remove all empty paragraphs in Word?

If a document covers 200 pages with hundreds of empty paragraphs, removing all empty paragraphs one by one is painful. How to remove all empty paragraphs efficiently and quickly? Take a few minutes to view this tutorial and you will find the answer.

Remove all empty paragraphs with Find and Replace function

Remove all empty paragraphs using VBA

Remove all empty paragraphs with Kutools for Word


arrow blue right bubble Remove all empty paragraphs with Find and Replace function

Hot

Amazing! Use Efficient Tabs in Word (Office) like Chrome, Firefox and New Internet Explorer!

Read more Free download

No one likes to spend huge time in removing all empty paragraphs one by one. The Find and Replace function in Word is commonly used as long as we know that empty paragraph symbol can be found as Paragraph Mark in Find What field.

1. Click Home > Replace to enable this utility.

2. Click More>> button to pop up more options. See below screenshot:

3. Place the cursor in the Find What field, and select the Paragraph Mark from the Special pull-down menu;

4. After select Paragraph Marks, there will be a "^p" mark showing in the Find What field.

5. Enter "^p" to make "^p^p" in the Find What field and click Replace All.

Notes:

The "^p" will remove not only all empty paragraphs, but also all paragraph marks in the documents to leave all text too close in one paragraph.

The "^p^p" will only remove all empty paragraphs (empty paragraph marks).


arrow blue right bubble Remove all empty Paragraphs using VBA

If you would like to use Macro working with a word document, the VBA code is also available for you to remove all empty paragraphs in word.

1. Press "Alt-F11" to open the Microsoft Visual Basic for Application window.

2. Click Module on the Insert tab, copy and paste the following VBA code into the Module window.

The VBA code of removing empty paragraphs:

Sub Deleemptyparagraphs()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^p^p"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchByte = False
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchWildcards = False
.MatchFuzzy = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub

4. Click Run Macro on the Run tab.


arrow blue right bubble Remove all empty paragraphs with kutools for Word

To remove all empty paragraphs in word, the built-in feature requires a few steps, while the Macro seems too complicated to understand. Is there a simpler way to help us remove all empty paragraphs quickly in word? Yes, Kutools for Word is your best solution.

Kutools for Word, a handy add-in, includes groups of functions to ease your work and enhance your ability of processing word documents. Free Trial for 45 days! Get It Now!

1. Please apply this utility by clicking Kutools > Empty Paras > Remove Empty Paragraph Marks. See screenshot:

2. After clicking Remove Empty Paragraph Marks, all empty paragraphs will be removed from the whole document.

Note: If you just want to remove the empty paragraphs from the selected part of the document, Kutools for Word can also help you, please read more information from here.



Recommended Word Productivity Tools

shot kutools word kutools tab 1180x121

shot kutools word kutools plus tab 1180x120

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...

How to Delete a Paragraph Mark in Word

Source: https://www.extendoffice.com/documents/word/647-word-remove-empty-paragraphs.html