PC Review


Reply
 
 
Jorge Bravo
Guest
Posts: n/a
 
      3rd Sep 2006
I am using Word 2007 Beta.

Is it possible to get the "Sentence count" ? (The number of sentences)

Thank you


 
Reply With Quote
 
 
 
 
=?Utf-8?B?UmFlIERyeXNkYWxl?=
Guest
Posts: n/a
 
      3rd Sep 2006
Would counting the number of periods (full stops) give you this information?
Depends if you have used any abbreviations and punctuated them. Hope this
helps. I haven't tried 2007 yet.
--
Rae Drysdale


"Jorge Bravo" wrote:

> I am using Word 2007 Beta.
>
> Is it possible to get the "Sentence count" ? (The number of sentences)
>
> Thank you
>
>
>

 
Reply With Quote
 
Jorge Bravo
Guest
Posts: n/a
 
      3rd Sep 2006
Well, I read the following in:
http://process.umn.edu/groups/ppd/do...iting_Tips.cfm

but can't see it in 2007.

Use Microsoft Word - Tools - Word Count for items 1 and 2 below.

1. Count the number of words in the sample 148

2. Count the number of sentences 13

3. Count the number of big words (3 or more syllables) 33

4. Calculate the average sentence length.
Divide the number of sentences into the number of words 148/13 = 11

5. Calculate the percentage of big words.
Divide the number of words into the number of big words 33/148=22%

6. Add the avg sentence length to the % of big words 11 + 22 = 33

7. Multiply the result by .4 33 x .4 =



Fog Index 13.2



Fog Index - Other Tools
Under the TOOLS Menu, Microsoft Word contains a word counter, grammar
checker and thesaurus you can use to help simplify your writing style.

The grammar checker doesn't use the Fog Index. It uses three Flesch tools to
analyze style:


1. Flesch Reading Ease (100 = easiest, 70-80 = average)

2. Flesch Grade Level (Assigns a grade level reader must have to
understand
your writing, 6 = average)

3. Flesch Kincaid (Another formula for determining reader grade level)

"Rae Drysdale" <(E-Mail Removed)> escreveu na mensagem
news:991F5D3D-BECA-492D-9EE3-(E-Mail Removed)...
> Would counting the number of periods (full stops) give you this
> information?
> Depends if you have used any abbreviations and punctuated them. Hope this
> helps. I haven't tried 2007 yet.
> --
> Rae Drysdale
>
>
> "Jorge Bravo" wrote:
>
>> I am using Word 2007 Beta.
>>
>> Is it possible to get the "Sentence count" ? (The number of sentences)
>>
>> Thank you
>>
>>
>>



 
Reply With Quote
 
Jay Freedman
Guest
Posts: n/a
 
      3rd Sep 2006
On Sun, 3 Sep 2006 18:31:44 +0200, "Jorge Bravo" <(E-Mail Removed)>
wrote:

>I am using Word 2007 Beta.
>
>Is it possible to get the "Sentence count" ? (The number of sentences)
>
>Thank you
>


A count, of somewhat dubious accuracy, is available through the macro
language.

Open the macro editor (Alt+F11), display the Immediate window
(Ctrl+G), paste in the following line, and press Enter.

?ActiveDocument.Sentences.Count

The number will appear on the next line of the window. If you need to
use this often, make this into a complete macro and assign it to a
shortcut or QAT toolbar button:

Sub SentenceCount()
MsgBox ActiveDocument.Sentences.Count & " sentences"
End Sub

When I tried this on a small document with 9 sentences and one
picture, the macro said there were 10 sentences. So if you have
graphics in your document, don't take this count as accurate.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
 
Reply With Quote
 
Jorge Bravo
Guest
Posts: n/a
 
      3rd Sep 2006
Great. Thanks.


"Jay Freedman" <(E-Mail Removed)> escreveu na mensagem
news:(E-Mail Removed)...
> On Sun, 3 Sep 2006 18:31:44 +0200, "Jorge Bravo" <(E-Mail Removed)>
> wrote:
>
>>I am using Word 2007 Beta.
>>
>>Is it possible to get the "Sentence count" ? (The number of sentences)
>>
>>Thank you
>>

>
> A count, of somewhat dubious accuracy, is available through the macro
> language.
>
> Open the macro editor (Alt+F11), display the Immediate window
> (Ctrl+G), paste in the following line, and press Enter.
>
> ?ActiveDocument.Sentences.Count
>
> The number will appear on the next line of the window. If you need to
> use this often, make this into a complete macro and assign it to a
> shortcut or QAT toolbar button:
>
> Sub SentenceCount()
> MsgBox ActiveDocument.Sentences.Count & " sentences"
> End Sub
>
> When I tried this on a small document with 9 sentences and one
> picture, the macro said there were 10 sentences. So if you have
> graphics in your document, don't take this count as accurate.
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
> Email cannot be acknowledged; please post all follow-ups to the
> newsgroup so all may benefit.



 
Reply With Quote
 
Jay Freedman
Guest
Posts: n/a
 
      3rd Sep 2006
For future reference:

- Go to Word Options > Proofing, look in the grammar section, and
check the option "Show readability statistics". When you spell-check
the document, the number of sentences will appear among the other
counts in the dialog. You may have to click the Recheck Document
button to make Word discard previous spell check results in order to
display the dialog.

- Steps 3 through 7 in the cited material have to be done manually.
Neither Word 2003 nor Word 2007 gives you any method for counting
syllables. (Inside the Flesch computations it must count them or at
least estimate them, but this isn't available externally.)

- In Word 2003, the word count appears in the Tools > Word Count
dialog. In Word 2007, the same dialog appears in Review > Proofing >
Word Count. For some reason, this dialog doesn't include the sentence
count.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Sun, 3 Sep 2006 19:08:58 +0200, "Jorge Bravo" <(E-Mail Removed)>
wrote:

>Well, I read the following in:
>http://process.umn.edu/groups/ppd/do...iting_Tips.cfm
>
>but can't see it in 2007.
>
>Use Microsoft Word - Tools - Word Count for items 1 and 2 below.
>
> 1. Count the number of words in the sample 148
>
> 2. Count the number of sentences 13
>
> 3. Count the number of big words (3 or more syllables) 33
>
> 4. Calculate the average sentence length.
> Divide the number of sentences into the number of words 148/13 = 11
>
> 5. Calculate the percentage of big words.
> Divide the number of words into the number of big words 33/148=22%
>
> 6. Add the avg sentence length to the % of big words 11 + 22 = 33
>
> 7. Multiply the result by .4 33 x .4 =
>
>
>
> Fog Index 13.2
>
>
>
>Fog Index - Other Tools
>Under the TOOLS Menu, Microsoft Word contains a word counter, grammar
>checker and thesaurus you can use to help simplify your writing style.
>
>The grammar checker doesn't use the Fog Index. It uses three Flesch tools to
>analyze style:
>
>
> 1. Flesch Reading Ease (100 = easiest, 70-80 = average)
>
> 2. Flesch Grade Level (Assigns a grade level reader must have to
>understand
> your writing, 6 = average)
>
> 3. Flesch Kincaid (Another formula for determining reader grade level)
>
>"Rae Drysdale" <(E-Mail Removed)> escreveu na mensagem
>news:991F5D3D-BECA-492D-9EE3-(E-Mail Removed)...
>> Would counting the number of periods (full stops) give you this
>> information?
>> Depends if you have used any abbreviations and punctuated them. Hope this
>> helps. I haven't tried 2007 yet.
>> --
>> Rae Drysdale
>>
>>
>> "Jorge Bravo" wrote:
>>
>>> I am using Word 2007 Beta.
>>>
>>> Is it possible to get the "Sentence count" ? (The number of sentences)
>>>
>>> Thank you
>>>
>>>
>>>

>

 
Reply With Quote
 
Suzanne S. Barnhill
Guest
Posts: n/a
 
      3rd Sep 2006
Unless sentence count is really hooked into grammatical analysis, it can
really only be a count of text strings between terminal punctuation marks.
Since these would (without grammatical analysis) include periods following
abbreviations, I don't see how it could be very accurate. Given that the
readability statistics claim to be based (at least in part) on number of
words in a sentence, I assume there is some grammatical analysis involved
(which is not involved in simple word/character counts).

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Jay Freedman" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> For future reference:
>
> - Go to Word Options > Proofing, look in the grammar section, and
> check the option "Show readability statistics". When you spell-check
> the document, the number of sentences will appear among the other
> counts in the dialog. You may have to click the Recheck Document
> button to make Word discard previous spell check results in order to
> display the dialog.
>
> - Steps 3 through 7 in the cited material have to be done manually.
> Neither Word 2003 nor Word 2007 gives you any method for counting
> syllables. (Inside the Flesch computations it must count them or at
> least estimate them, but this isn't available externally.)
>
> - In Word 2003, the word count appears in the Tools > Word Count
> dialog. In Word 2007, the same dialog appears in Review > Proofing >
> Word Count. For some reason, this dialog doesn't include the sentence
> count.
>
> --
> Regards,
> Jay Freedman
> Microsoft Word MVP FAQ: http://word.mvps.org
> Email cannot be acknowledged; please post all follow-ups to the
> newsgroup so all may benefit.
>
> On Sun, 3 Sep 2006 19:08:58 +0200, "Jorge Bravo" <(E-Mail Removed)>
> wrote:
>
> >Well, I read the following in:
> >http://process.umn.edu/groups/ppd/do...iting_Tips.cfm
> >
> >but can't see it in 2007.
> >
> >Use Microsoft Word - Tools - Word Count for items 1 and 2 below.
> >
> > 1. Count the number of words in the sample 148
> >
> > 2. Count the number of sentences 13
> >
> > 3. Count the number of big words (3 or more syllables) 33
> >
> > 4. Calculate the average sentence length.
> > Divide the number of sentences into the number of words 148/13 =

11
> >
> > 5. Calculate the percentage of big words.
> > Divide the number of words into the number of big words 33/148=22%
> >
> > 6. Add the avg sentence length to the % of big words 11 + 22 = 33
> >
> > 7. Multiply the result by .4 33 x .4 =
> >
> >
> >
> > Fog Index 13.2
> >
> >
> >
> >Fog Index - Other Tools
> >Under the TOOLS Menu, Microsoft Word contains a word counter, grammar
> >checker and thesaurus you can use to help simplify your writing style.
> >
> >The grammar checker doesn't use the Fog Index. It uses three Flesch tools

to
> >analyze style:
> >
> >
> > 1. Flesch Reading Ease (100 = easiest, 70-80 = average)
> >
> > 2. Flesch Grade Level (Assigns a grade level reader must have to
> >understand
> > your writing, 6 = average)
> >
> > 3. Flesch Kincaid (Another formula for determining reader grade level)
> >
> >"Rae Drysdale" <(E-Mail Removed)> escreveu na

mensagem
> >news:991F5D3D-BECA-492D-9EE3-(E-Mail Removed)...
> >> Would counting the number of periods (full stops) give you this
> >> information?
> >> Depends if you have used any abbreviations and punctuated them. Hope

this
> >> helps. I haven't tried 2007 yet.
> >> --
> >> Rae Drysdale
> >>
> >>
> >> "Jorge Bravo" wrote:
> >>
> >>> I am using Word 2007 Beta.
> >>>
> >>> Is it possible to get the "Sentence count" ? (The number of

sentences)
> >>>
> >>> Thank you
> >>>
> >>>
> >>>

> >


 
Reply With Quote
 
Cro-Code
Guest
Posts: n/a
 
      7th Sep 2006

Besides word and sentence count, you may probably be interested in
estimating the readability and style of text in more deep way. The
program called Textanz will calculate overall statistics and
word/phrase frequencies from any content. Text can be copy-pasted from
any application (including MS Word) for analysis.
http://www.cro-code.com/textanz.jsp



Jorge Bravo wrote:
> I am using Word 2007 Beta.
>
> Is it possible to get the "Sentence count" ? (The number of sentences)
>
> Thank you


 
Reply With Quote
 
=?Utf-8?B?amFhcnRlZQ==?=
Guest
Posts: n/a
 
      13th Oct 2006
Okay, what if you have checked "readability statistics" and they do not
show? I am using 2007 also, and have yet to have readability statistics show
up after a Style & Grammar check.

I do like the fact you can highlight a chunk of verbiage and see the word
count at the bottom of the screen.
--
jaartee
Fellow user


"Jay Freedman" wrote:

> For future reference:
>
> - Go to Word Options > Proofing, look in the grammar section, and
> check the option "Show readability statistics". When you spell-check


 
Reply With Quote
 
Jay Freedman
Guest
Posts: n/a
 
      13th Oct 2006
I don't know. Word 2007 hasn't been around long enough to develop a
bag of tricks for fixing all the things that can go wrong (and it
often isn't worth developing those tricks for a beta, because many of
the problems will disappear in the final release).

The usual scattershot techniques might work: try starting in safe
mode; rename or delete normal.dotm; rebuild the Data key in the
registry. See
http://www.word.mvps.org/FAQs/AppErr...peningWord.htm (the
techniques there are good for more than just startup problems).

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org

On Thu, 12 Oct 2006 15:14:02 -0700, jaartee
<(E-Mail Removed)> wrote:

> Okay, what if you have checked "readability statistics" and they do not
>show? I am using 2007 also, and have yet to have readability statistics show
>up after a Style & Grammar check.
>
> I do like the fact you can highlight a chunk of verbiage and see the word
>count at the bottom of the screen.
>--
>jaartee
>Fellow user
>
>
>"Jay Freedman" wrote:
>
>> For future reference:
>>
>> - Go to Word Options > Proofing, look in the grammar section, and
>> check the option "Show readability statistics". When you spell-check


--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Count of words in Word 2007 and count in 2003 are different Gabi Microsoft Word Document Management 2 27th May 2008 01:20 PM
How do I get word count to count my headers and footers? =?Utf-8?B?V29ya2luZyB3aXRoIHdvcmQgYXJnaCEhIQ==?= Microsoft Word Document Management 2 16th Oct 2006 05:33 PM
Can I set word count to not count words with three letters less? =?Utf-8?B?RGlhbmFIb2xtZXM=?= Microsoft Word Document Management 8 24th Sep 2006 06:53 AM
Word's word count feature should be able to count sentences also =?Utf-8?B?Q29ubm9y?= Microsoft Word Document Management 31 15th Nov 2005 08:03 PM
A word count that appears next to the page count =?Utf-8?B?V29yZHk4OA==?= Microsoft Word Document Management 1 24th Jun 2005 01:30 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:44 PM.