Welcome toWord.Tips.Net
Ask a Word Question
Make a Comment
Learn Access Now
Free Printable Forms
Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips
Setting Fraction Bar Overhang Spacing in the Equation Editor
Printing On Both Sides of the Paper
Turning Off AutoComplete for Dates
Understanding Auto Line Spacing
Adding Comments to Your Document
Conditional Calculations in Word
Word allows you to customize the bullet and numbering styles defined within the program. For instance, you can pick a different character to use as a bullet, as has been discussed in other issues of WordTips. You can even synthesize a way to use words as "bullets" if you instead define numbered lists (which are closely associated with bulleted lists) that don't use the numbers, but instead have "trailing text" which effectively functions as the "bullet."
The problem with any such approach is that you are still subject to the same problems that plague bulleted and numbered lists in general. (These have been covered in other issues of WordTips.) It is possible to avoid some of the problems by relying on outline numbering instead of bullets or regular numbering, but problems can still easily crop up.
Quite honestly, most Word experts will admit that there are serious problems with Word's automatic numbering and bulleting features. There are many different things that can affect bullet and numbering styles. For instance, if the Automatically Update check box (in the Modify style dialog box) is set for one of your bullet or numbering styles, then it can cause untold problems as users make explicit changes to paragraphs within the document. Similarly, if the numbering or bullet styles are based on other styles, then changes can cascade from one style to another without warning.
To get around potential problems with formatting bulleted or numbered lists, many advocate sidestepping Word's automatic features all together. Instead, you can develop a series of macros that can handle the numbering or application of bullets. For instance, the following macro can be used to explicitly format a paragraph using a word as a bullet:
Public Sub BulletText()
Dim sBullet As String
Dim myList As ListTemplate
sBullet = InputBox("Enter bullet text:", "Bullet Text", "Note:")
' Add a new ListTemplate object
Set myList = ActiveDocument.ListTemplates.Add
With myList.ListLevels(1)
.NumberFormat = sBullet
.TrailingCharacter = wdTrailingTab
.NumberPosition = InchesToPoints(0.25)
.Alignment = wdListLevelAlignLeft
.TextPosition = InchesToPoints(0.75)
.TabPosition = InchesToPoints(0.75)
.ResetOnHigher = 0
.StartAt = 1
.LinkedStyle = ""
' The following sets the font attributes of
' the "bullet" text
With .Font
.Bold = True
.Name = "Arial"
.Size = 10
End With
End With
' Apply the new ListTemplate to the selected text
Selection.Range.ListFormat.ApplyListTemplate ListTemplate:=myList
End Sub
This macro prompts you for the text to use as your "bullet" and then formats the selected paragraphs using your specification. Notice that the macro uses objects known as "ListTemplates." These objects are what you see when you glance at the palette of available bullet and numbering options in the tabs of the Bullets and Numbering dialog box. Many of the problems associated with numbering and bullets in Word are related to problems in reliably associating specific ListTemplate objects with specific styles. This macro bypasses those problems by not attempting to do so, but by creating new, custom ListTemplate objects that are applied to individual paragraphs in your document.
The downside of using a macro such as this is that you are relying on explicit formatting rather than on styles. This means that you loose the major benefit of styles, which is consistency and the ability to make universal changes to like-styled paragraphs.
Tip #1546 applies to Microsoft Word versions: 97 2000 2002 2003
Find and Replace Almost Anything! An invaluable resource for learning how to harness the full power of Word's search and replace capabilities. You'll discover everything you need in order to master all the intricacies of finding and replacing elements of your document, including the super-powerful "wildcard searches" available in Word.