
Tips.Net > WordTips Home > Printing > Correct Line Numbers When Printing Selections
Summary: Line numbers are, for some types of documents, a necessity. Line numbers are usually sequential for a page or for the entire document. If you choose to print just a portion of the page or document, Word actually renumbers the lines on the printed page as if that portion were, in reality, the entire document. If you want the printed page to reflect the line numbers as they would appear if the entire document were printed, the macros in this tip will come in handy. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)
Word allows you to add line numbers to a document. This means exactly what it says—each line in the document is numbered from beginning to end. This can be very helpful when creating special documents, such as legal documents, or when printing a hardcopy for subsequent reference on a line-by-line basis.
When you print a document with continuous line numbers turned on, Word numbers every line from start to finish. However, if you only print a selection (make a selection, display the Print dialog box, and make sure that Selection is specified as what you are printing), then Word doesn't print line numbers correctly. Word numbers the lines in the selection as if it were the entire document—starting at one and proceeding through the selection. One would think that a better approach would be for Word to print the line numbers according to what the selection really represents in the document. For instance, if you selected lines 57 through 72 as your selection and then printed it, Word should print the numbers 57 through 72 at the left side of the printout, rather than 1 through 15.
There is no easy way around this problem, unfortunately. One workaround is to not print selections. (This suggestion may sound more flippant than what is meant.) Instead, print pages. In the print dialog box, specify a page range to print, rather than a selection. Word keeps the line numbering proper, as if you were numbering from the beginning of the document.
Another option is to rely on a macro to do the "dirty work" for you. You can use a macro to reset the beginning line number used for your selection. The following is a simple macro that asks you for a beginning line number, and then prints your selection using that line number as the first number printed at the left. (Note that this macro doesn't start printing with the line number you specify—it uses the number you specify as the starting line number of your selection.)
Sub LineNumbersPrint()
Dim LineNumberStart As Integer
On Error GoTo GetOut
LineNumberStart = InputBox("Please type first line number for your printout", _
"Line Numbers Printout")
With ActiveDocument.PageSetup
With .LineNumbering
.Active = True
.StartingNumber = LineNumberStart
End With
End With
ActiveDocument.PrintOut , Range:=wdPrintSelection
With ActiveDocument.PageSetup
With .LineNumbering
.Active = True
.StartingNumber = 1
End With
End With
GetOut:
End Sub
Using this macro assumes that you look up the starting line number of your selection before you actually print. This can be done using the Print Preview feature of Word, but can get tiresome after a while. If you do quite a bit of selection printing, the following macro will be of more interest to you. It is more complex, but it automatically determines the proper line number to use at the start of the selection, and then prints the selection.
Public Sub Correct_Line_Numbers()
Dim myRng As Range
Dim StartRng As Range
Dim iCount As Integer
'if you include the paragraph mark in your selection, then Word will
'print the subsequent line number; not the entire line, just the
'line number; therefore, if the last character of the current
'selection is a paragraph mark, then move the end position of
'the selection to the left by one character
If Selection.Characters.Last = Chr(13) Then
Selection.MoveEnd Count:=-1
End If
'set the current selection to a variable
Set myRng = Selection.Range
'set the start of the document to a variable
Set StartRng = ActiveDocument.Paragraphs(1).Range
With Selection
'go to the beginning of the line for the current selection and
'set the iCount variable so that it counts the current line
.HomeKey unit:=wdLine
iCount = 1
'if the cursor is not at the beginning of the document then
'move the cursor up by one line
'increment iCount by one each time the cursor is not at
'the beginning of the document
While Not Selection.InRange(StartRng)
.MoveUp unit:=wdLine
iCount = iCount + 1
'if the cursor is in a table, then the macro should
'reduce iCount; Word counts an entire table as one line
If Selection.Rows.Count > 0 Then
iCount = iCount - 1
End If
Wend
End With
'reset the starting line number so that it equals the number of times
'the cursor was moved up by a line
ActiveDocument.PageSetup.LineNumbering.StartingNumber = iCount
'reselect the original selection
myRng.Select
'print out only the original selection
ActiveDocument.PrintOut Range:=wdPrintSelection
'reset the line number(by "undoing" the last two actions
'[fields update and change line number])
'so that line numbering begins at one
ActiveDocument.Undo
ActiveDocument.Undo
'reselect the original selection
myRng.Select
End Sub
There is one caveat with this macro. If you have hidden text within your document, and that hidden text is displayed but is not set up to print out, then this macro still counts those lines of text as if they would print. In other words, the macro assumes you are printing the hidden text if you have it displayed on-screen.
Tip #1525 applies to Microsoft Word versions: 97 2000 2002 2003 2007
Create and Merge! Using Word's mail merge tool you can quickly and easily combine data from a variety of data sources to create great individualized documents that incorporate your data in ways that you control. WordTips: Mail Merge Magic is an invaluable source for learning how to harness the full power of Word's mail merging capabilities.
Check out WordTips: Mail Merge Magic today!
Thousands of WordTips, available for immediate download. Have all the Microsoft Word info you need, right at your fingertips. (more information...)
Ask a Word Question
Make a Comment
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