Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Shejju Shejju is offline
external usenet poster
 
Posts: 1
Default how to add a running word count

i want to add a running word count at the end of every page on my essay and
is it able to do it automatically? i am using Microsoft Word 2007
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default how to add a running word count

You cannot do it automatically. However, if you run a macro containing the
following code when your document is the active document, it will create a
new document with each page of your document in a separate Section and with
the running word count in the footer of each Section.

Dim Counter As Long, i As Long
Dim Source As Document, Target As Document
Dim rngTarget As Range
Dim strPages As String
Dim arrPagee As Variant
Set Source = ActiveDocument
Set Target = Documents.Add
Source.Activate
Selection.HomeKey Unit:=wdStory
Pages = Source.BuiltInDocumentProperties(wdPropertyPages)
Counter = 0
strPages = ""
While Counter Pages
Counter = Counter + 1
With Source.Bookmarks("\Page").Range
strPages = strPages & "|" & .Words.Count
.Copy
End With
Set rngTarget = Target.Range
rngTarget.Collapse wdCollapseEnd
rngTarget.Paste
Set rngTarget = Target.Range
rngTarget.Collapse wdCollapseEnd
rngTarget.InsertBreak wdSectionBreakNextPage
Selection.GoTo What:=wdGoToPage, Which:=wdGoToNext, Count:=1
Wend
arrPages = Split(strPages, "|")
Counter = 0
With Target
For i = 1 To .Sections.Count - 1
With .Sections(i).Footers(wdHeaderFooterPrimary)
.LinkToPrevious = False
Counter = Counter + Val(arrPages(i))
.Range.Text = Counter
End With
Next i
End With


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com

"Shejju" wrote in message
...
i want to add a running word count at the end of every page on my essay
and
is it able to do it automatically? i am using Microsoft Word 2007


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I get a running header with running page numbers? rsw5060 Page Layout 2 December 9th 08 03:55 AM
Count of words in Word 2007 and count in 2003 are different Gabi Microsoft Word Help 2 May 27th 08 12:20 PM
How do I get word count to count my headers and footers? Working with word argh!!! Microsoft Word Help 2 October 16th 06 04:33 PM
Word's word count feature should be able to count sentences also Connor Microsoft Word Help 31 November 15th 05 07:03 PM
A word count that appears next to the page count Wordy88 Microsoft Word Help 1 June 24th 05 12:30 AM


All times are GMT +1. The time now is 05:10 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"