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

 

Automatically Setting Right Leader Tabs

Summary: If you have a constant need to define tabs at the edge of the right margin, you'll love the macro-based technique provided in this tip. You can, just by running the macro, set the requisite tab and include either dot or underscore leaders for the tab. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)

There are many times when your formatting needs call for setting a right tab at the right margin, and making sure it has either an underscore or dot leader on it. This is done quite often if you are creating "manually" laid-out forms. Setting such tabs can be a hassle, however, since it involves the use of the dialog boxes or the ruler and repetitive actions.

If you set quite a few such tabs, you may be interested in the RightTab VBA macro shown below. When run, it examines each paragraph you have selected, clears all their tab stops, and sets a single right tab at the right margin with an underscore leader.

Sub RightTab()
    Dim MarPos As Integer, NewPos As Integer
    Dim ThisPar As Paragraph

    MarPos = Selection.PageSetup.PageWidth - _
      Selection.PageSetup.LeftMargin - _
      Selection.PageSetup.RightMargin - _
      Selection.PageSetup.Gutter

    Set myrange = Selection.Range
    For Each ThisPar In myrange.Paragraphs
        NewPos = MarPos - ThisPar.RightIndent
        ThisPar.TabStops.ClearAll
        ThisPar.TabStops.Add Position:=NewPos, _
          Alignment:=wdAlignTabRight, _
          Leader:=wdTabLeaderLines
    Next ThisPar
End Sub

The macro will work even if the selected paragraphs have differing right margins from each other. It also takes into account your current page setup.

If you don't want the macro to remove all the tab stops already set in the selected paragraphs, remove the line that uses the ClearAll method. If you want to use dot leaders on the tab instead of underscores, then change the wdTabLeaderLines constant name to wdTabLeaderDots.

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

Document and Annotate! One of the easily overlooked tools provided by Word is the ability to add footnotes and endnotes to your documents. WordTips: Footnotes and Endnotes is the definitive resource guide to using these tools to enhance your documents.
 
Check out WordTips: Footnotes and Endnotes today!