bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Editing > Track Changes > Setting Change Bars Manually

Setting Change Bars Manually

Summary: A couple of ways you can add change bars to your document. (This tip works with Microsoft Word 97, Word 2000, Word 2002, and Word 2003.)

When you use the change tracking features of Word, you can edit your documents and allow Word to mark what has been changed. One of the options is to include "change bars," which are nothing but vertical bars that appear in the margin of your document to indicate a line or paragraph where a change has been made.

In some disciplines, change bars are used quite frequently. You may want to use change bars, but not have change tracking turned on. In other words, you may want to manually add a change bar to your document.

This is a bit more difficult proposition than it may first appear. If you only want change bars, and no other indication of changes in your document, you are almost out of luck. Let me explain...

You can choose the Track Changes tab from the Options dialog box, and therein set exactly how you want Word to mark edits to your document, once you have change tracking turned on. The problem is this, however: You can only get change bars if you actually change text. For instance, if you want a change bar to appear beside a line of text, you must change something on that line. If you don't want the change itself to show (you only want the bar), this if fine--provided you don't want changes to show anywhere else in your document either. You can use the Track Changes tab to specify how changes show globally in your document, but not on an individual basis.

If this is acceptable, then setting change bars manually is a fairly straightforward process. All you need to do is turn off the text color changes for revisions, make sure that changes are underlined or struck through, turn on change tracking, and then make a change on the line where you want the change bar to appear. You can then turn off change tracking, and the change bar is still visible. You can even automate this process by recording a macro to take care of it for you. For instance, the following simple VBA macro will do the work:

Sub MarkIt()
    Selection.Cut
    With Options
        .InsertedTextMark = wdInsertedTextMarkNone
        .InsertedTextColor = wdAuto
        .DeletedTextMark = wdDeletedTextMarkStrikeThrough
        .DeletedTextColor = wdAuto
        .RevisedPropertiesMark = wdRevisedPropertiesMarkNone
        .RevisedPropertiesColor = wdAuto
        .RevisedLinesMark = wdRevisedLinesMarkLeftBorder
        .RevisedLinesColor = wdAuto
    End With
    With ActiveDocument
        .TrackRevisions = True
        .PrintRevisions = True
        .ShowRevisions = True
    End With
    Selection.Paste
    With ActiveDocument
        .TrackRevisions = False
        .PrintRevisions = True
        .ShowRevisions = True
    End With
End Sub

All you need to do is select the text you want to "mark" and then run the macro.

There is another way of handling the manual change bars that doesn't even rely on the change tracking feature of Word. All you need to do is set a bar tab at a position of -.12 inches in your paragraph, and a change bar appears to the left of the paragraph. Note that this places the bar to the left of the entire paragraph, and not just to the left of individual lines in the paragraph. If you want to use this approach, follow these steps:

  1. Place the insertion point within the paragraph where you want the change bar to appear.
  2. Choose Tabs from the Format menu. The Tabs dialog box appears. (Click here to see a related figure.)
  3. In the Tab Stop Position box, enter -.12"
  4. Choose the Bar radio button.
  5. Click on Set.
  6. Click on OK.

Tip #474 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003


Take Control! Master the real power behind Word! Successfully master the secrets of powerful formatting and create documents that stand out from the rest. Best of all, you can create documents that are easy to maintain and quick to change.
 
Check out Word 2007 Styles and Templates today!

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home
Vital News Home

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)