5 Ways to Quickly Remove Bullets and List Numbers from Your Word Document

In this article, we would like to demonstrate you 5 easy ways to remove the bullets and list numbers from your Word document.

A document can contain bulleted and numbered lists. Sometimes, you may need to reformat these lists. For example, you might need to set list contents in bold, italic, or regular texts, to name just a few. Then you have to remove all the bullets and list numbers first.Remove Bullets and List Numbers from Your Word Document

Here are 5 solutions to different cases.

Method 1: Set “None” Bullets or Numbering

  1. First of all, select unwanted bulleted and numbered entries.
  2. Then click on the drop-down button on “Bullets” or “Numbering”.
  3. Click “None”.Choose "None"" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20485%20462'%3E%3C/svg%3E" alt="Select Entries->Click on Drop-down Button on "Bullets" or "Numbering" Command->Choose "None"" width="485" height="462" data-lazy-srcset="//www.circareview.com/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-on-Drop-down-Button-on-Bullets-or-Numbering-Command-then-Choose-None.jpg 485w, //www.circareview.com/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-on-Drop-down-Button-on-Bullets-or-Numbering-Command-then-Choose-None-300x286.jpg 300w" data-lazy-sizes="(max-width: 485px) 100vw, 485px" data-lazy-src="//www.circareview.com/download/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-on-Drop-down-Button-on-Bullets-or-Numbering-Command-then-Choose-None.jpg">

Check the result:Effect

Method 2: Set “Normal” Style for Bulleted or Numbered Entries

  1. To begin with, select unnecessary entries.
  2. Second, click “Home” tab in the Ribbon.
  3. Then click “More” button in “Styles” group.
  4. Next choose “Normal”.Click "More" Button in "Styles" Group->Choose "Normal"" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20884%20415'%3E%3C/svg%3E" alt="Select Entries->Click "Home"->Click "More" Button in "Styles" Group->Choose "Normal"" width="884" height="415" data-lazy-srcset="//www.circareview.com/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-Home-then-Click-More-Button-in-Styles-Group-then-Choose-Normal.png 884w, //www.circareview.com/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-Home-then-Click-More-Button-in-Styles-Group-then-Choose-Normal-300x141.png 300w, //www.circareview.com/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-Home-then-Click-More-Button-in-Styles-Group-then-Choose-Normal-768x361.png 768w, //www.circareview.com/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-Home-then-Click-More-Button-in-Styles-Group-then-Choose-Normal-500x235.png 500w" data-lazy-sizes="(max-width: 884px) 100vw, 884px" data-lazy-src="//www.circareview.com/download/blogs/wp-content/uploads/2017/07/Select-Entries-then-Click-Home-then-Click-More-Button-in-Styles-Group-then-Choose-Normal.png">
  5. Or you can press “Ctrl+ Shift+ N” in step 2 instead.

Method 3: Remove All Bullets in a Document

  1. First and foremost, press “Alt+ F11” to open VBA editor in Word.
  2. In the editor, click “Normal” project.
  3. Then click “Insert” tab and choose “Module”.Click "Insert"->Click "Module"" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20266%20185'%3E%3C/svg%3E" alt="Click "Normal"->Click "Insert"->Click "Module"" width="266" height="185" data-lazy-src="//www.circareview.com/download/blogs/wp-content/uploads/2017/07/Click-Normal-then-Click-Insert-then-Click-Module-33.jpg">
  4. Double click new module to bring out the editing area and paste the following macro there:
Sub RemoveAllBulletsInADoc() Dim objParagraph As Paragraph Dim objDoc As Document Application.ScreenUpdating = False Set objDoc = ActiveDocument For Each objParagraph In ActiveDocument.Paragraphs If objParagraph.Range.ListFormat.ListType = WdListType.wdListBullet Then objParagraph.Range.ListFormat.RemoveNumbers End If Next objParagraph Application.ScreenUpdating = True Set objDoc = Nothing End Sub
  1. 最后,点击“运行”或“F5”。Paste Macro->Click

Here is the outcome:Effect of Removing All Bullets

Method 4: Remove All List Numbers in a Document

  1. First, repeat steps in method 3 to install and run a macro.
  2. Only you need this macro instead:
Sub RemoveAllListNumbersInADoc() Dim objParagraph As Paragraph Dim objDoc As Document Application.ScreenUpdating = False Set objDoc = ActiveDocument For Each objParagraph In objDoc.Paragraphs If objParagraph.Range.ListFormat.ListType = wdListSimpleNumbering Then objParagraph.Range.ListFormat.RemoveNumbers End If Next objParagraph Application.ScreenUpdating = True Set objDoc = Nothing End Sub

Method 5: Remove All Bullets and List Numbers in a Document

Now in case you need to remove both bullets and list numbers, you can utilize the following macro:

Sub RemoveBulletsAndListBumbers() Dim objParagraph As Paragraph Dim objDoc As Document Application.ScreenUpdating = False Set objDoc = ActiveDocument For Each objParagraph In objDoc.Paragraphs If objParagraph.Range.ListFormat.ListType = WdListType.wdListBullet Or wdListSimpleNumbering Then objParagraph.Range.ListFormat.RemoveNumbers End If Next objParagraph Application.ScreenUpdating = True Set objDoc = Nothing End Sub

Pick a Trustworthy Repairing Tool

Given to the fact that Word is susceptible to errors, there are many repairing tools designed tofix Word. However, you must pay enough attention while picking such a utility, especially in a time of emergency. Remember that unreliable tool can cause further damage for your data.

Author Introduction:

Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, includingfix xlsand pdf repair software products. For more information visitwww.circareview.com

One response to “5 Ways to Quickly Remove Bullets and List Numbers from Your Word Document”

Leave a Reply

Your email address will not be published.Required fields are marked*