Word 2007 line count

P

Peter T. Daniels

What do you mean by "recorded"?

If you want to add line numbers to your pages, go to Page Layout tab,
Page Setup group, Line Numbers.

If you want to see what line you're in as you type, right-click on the
Status Bar (bottom of the document window) and check it (and other
useful things) on the list that appears. (This appears to show only
the line on the present page, not a cumulative total.)
 
V

visualbill

For total line count:
Pick the "orb" ->Prepare->Properties, then select "Document
Properties->Advanced Properties" and go to the Statistics tab.
 
P

Peter T. Daniels

Will that change the running count displayed in the Status Bar for the
present location of the cursor?
 
G

Greg Maxey

You can show it on the status bar momentarily or in a message box
using a macro:

Sub ScratchMaco()
Application.StatusBar = "Total lines : " &
ActiveDocument.ComputeStatistics(wdStatisticLines)
Msgbox "Total lines : " & ActiveDocument.ComputeStatistics
(wdStatisticLines)
End Sub

For help installing and using the macro see: http://www.gmayor.com/installing_macro.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top