Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Dianne Griffin Dianne Griffin is offline
external usenet poster
 
Posts: 6
Default How to count words in sections using Word 2007, when EndNote used?

I need to find how to count words in a manuscript's sections in Word 2007.
The citation add in EndNote has been used for the citations.
--
Dianne Griffin
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
macropod[_2_] macropod[_2_] is offline
external usenet poster
 
Posts: 2,059
Default How to count words in sections using Word 2007, when EndNote used?

Hi Dianne,

For a given Section, you could use something based on the following macro:

Sub SectionWordCount()
Dim iSct As Integer
Dim iCount1 As Integer
Dim iCount2 As Integer
Dim iCount3 As Integer
iCount1 = 0
iCount2 = 0
iCount3 = 0
Dim oFoot As Footnote
Dim oEnd As Endnote
iSct = Selection.Information(wdActiveEndSectionNumber)
With ActiveDocument.Sections(iSct)
iCount1 = .Range.ComputeStatistics(wdStatisticWords)
For Each oFoot In .Range.Footnotes
iCount2 = iCount2 + oFoot.Range.ComputeStatistics(wdStatisticWords)
Next
For Each oEnd In .Range.Endnotes
iCount3 = iCount3 + oEnd.Range.ComputeStatistics(wdStatisticWords)
Next
End With
MsgBox Prompt:="Body: " & iCount1 & vbTab & _
"Footnotes: " & iCount2 & vbTab & "Endnotes: " & iCount3 & vbTab & _
"Total: " & iCount1 + iCount2 + iCount3, Title:=" Word Count for Section " & iSct
End Sub

--
Cheers
macropod
[MVP - Microsoft Word]


"Dianne Griffin" wrote in message ...
I need to find how to count words in a manuscript's sections in Word 2007.
The citation add in EndNote has been used for the citations.
--
Dianne Griffin

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
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 you count words/characters on word 2007 outlook calendar Microsoft Word Help 2 August 8th 07 07:37 PM
word count different words Fabricio Microsoft Word Help 1 April 19th 07 03:19 PM
Can I set word count to not count words with three letters less? DianaHolmes Microsoft Word Help 8 September 24th 06 05:53 AM
Problems with endnote numbering after sections w/ breaks Brad Microsoft Word Help 1 July 17th 06 09:22 AM


All times are GMT +1. The time now is 06:28 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"