Word.Tips.Net Welcome toWord.Tips.Net

Helpful Links

Tips.Net Home
WordTips Home

Ask a Word Question
Make a Comment

Tips.Net Store

WordTips FAQ
WordTips Premium

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

Advertise on the
WordTips Site

Newest Tips

Arranging Document Windows

Specifying a Backup Location

Controlling Chart Gridlines

Merging Table Cells

Collapsing and Expanding Subdocuments

Zooming With the Keyboard

Initiating a New Search

 

Problems Using Words as Bullets

Summary: If you know the secret, you can use actual words as "bullets" in a bulleted list. The built-in bulleted lists in Word aren't the way to achieve what you want to do, and this tip explains why. It also provides a macro that you can use to apply the formatting you want to the list. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

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.
 
Check out WordTips: Find and Replace today!