Reply
 
Thread Tools Display Modes
  #1   Report Post  
Connor
 
Posts: n/a
Default Word's word count feature should be able to count sentences also

When i do my weekly composition for seventh grade it has to be a minimum of
fifteen sentences. If the word count feature could count sentences as well, I
would not have to do it manually.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...ocmanagemen t
  #2   Report Post  
garfield-n-odie
 
Posts: n/a
Default Word's word count feature should be able to count sentences also

This feature already exists within Word, so there is no need for
you to suggest it to Microsoft.

Connor wrote:

When i do my weekly composition for seventh grade it has to be a minimum of
fifteen sentences. If the word count feature could count sentences as well, I
would not have to do it manually.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...ocmanagemen t


  #3   Report Post  
Suzanne S. Barnhill
 
Posts: n/a
Default Word's word count feature should be able to count sentences also

Does it? Word Count counts pages, words, characters (with and without
spaces), paragraphs, and lines, but not sentences. But if Word tried to
count sentences, most users would not be satisfied because it would have to
count anything ending in a period as a sentence, which is what it does when
you use Ctrl+click to select a sentence, and this includes the periods after
abbreviations.

--
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.

"garfield-n-odie" wrote in message
...
This feature already exists within Word, so there is no need for
you to suggest it to Microsoft.

Connor wrote:

When i do my weekly composition for seventh grade it has to be a minimum

of
fifteen sentences. If the word count feature could count sentences as

well, I
would not have to do it manually.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the

"I
Agree" button in the message pane. If you do not see the button, follow

this
link to open the suggestion in the Microsoft Web-based Newsreader and

then
click "I Agree" in the message pane.


http://www.microsoft.com/office/comm...ocmanagemen t


  #4   Report Post  
Greg Maxey
 
Posts: n/a
Default Word's word count feature should be able to count sentences also

Look at readability statistics. ToolsOptionsSpelling and Grammar and
check Show readability statistics. Consider the following:

Did Mr. Smith go to Washington? I don't know Mrs. Jones; you will have to
ask Mr. Smith.


ToolsSpelling and Grammar.

Words: 18
Characters: 71
Paragraphs: 1
Sentences: 2



--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.

Suzanne S. Barnhill wrote:
Does it? Word Count counts pages, words, characters (with and without
spaces), paragraphs, and lines, but not sentences. But if Word tried
to
count sentences, most users would not be satisfied because it would
have to
count anything ending in a period as a sentence, which is what it
does when
you use Ctrl+click to select a sentence, and this includes the
periods after
abbreviations.


"garfield-n-odie" wrote in
message
...
This feature already exists within Word, so there is no need for
you to suggest it to Microsoft.

Connor wrote:

When i do my weekly composition for seventh grade it has to be a
minimum

of
fifteen sentences. If the word count feature could count sentences
as

well, I
would not have to do it manually.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to
the
suggestions with the most votes. To vote for this suggestion, click
the

"I
Agree" button in the message pane. If you do not see the button,
follow

this
link to open the suggestion in the Microsoft Web-based Newsreader
and

then
click "I Agree" in the message pane.


http://www.microsoft.com/office/comm...ocmanagemen t



  #5   Report Post  
Greg Maxey
 
Posts: n/a
Default Word's word count feature should be able to count sentences also

Then with VBA I suppose you could use:

Sub CountSentences()
MsgBox ActiveDocument.ReadabilityStatistics(4).Value
'Instead of
MsgBox ActiveDocument.Sentences.Count
End Sub

--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.

Greg Maxey wrote:
Look at readability statistics. ToolsOptionsSpelling and Grammar
and check Show readability statistics. Consider the following:

Did Mr. Smith go to Washington? I don't know Mrs. Jones; you will
have to ask Mr. Smith.


ToolsSpelling and Grammar.

Words: 18
Characters: 71
Paragraphs: 1
Sentences: 2




Suzanne S. Barnhill wrote:
Does it? Word Count counts pages, words, characters (with and without
spaces), paragraphs, and lines, but not sentences. But if Word tried
to
count sentences, most users would not be satisfied because it would
have to
count anything ending in a period as a sentence, which is what it
does when
you use Ctrl+click to select a sentence, and this includes the
periods after
abbreviations.


"garfield-n-odie" wrote in
message
...
This feature already exists within Word, so there is no need for
you to suggest it to Microsoft.

Connor wrote:

When i do my weekly composition for seventh grade it has to be a
minimum

of
fifteen sentences. If the word count feature could count sentences
as

well, I
would not have to do it manually.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to
the
suggestions with the most votes. To vote for this suggestion, click
the

"I
Agree" button in the message pane. If you do not see the button,
follow

this
link to open the suggestion in the Microsoft Web-based Newsreader
and

then
click "I Agree" in the message pane.


http://www.microsoft.com/office/comm...ocmanagemen t





  #6   Report Post  
Suzanne S. Barnhill
 
Posts: n/a
Default Word's word count feature should be able to count sentences also

I suspected this might be available through the readability statistics, but
(short of VBA) there's no way to access those without checking grammar,
which is a huge PITA.

--
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.

"Greg Maxey" wrote in message
...
Look at readability statistics. ToolsOptionsSpelling and Grammar and
check Show readability statistics. Consider the following:

Did Mr. Smith go to Washington? I don't know Mrs. Jones; you will have to
ask Mr. Smith.


ToolsSpelling and Grammar.

Words: 18
Characters: 71
Paragraphs: 1
Sentences: 2



--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.

Suzanne S. Barnhill wrote:
Does it? Word Count counts pages, words, characters (with and without
spaces), paragraphs, and lines, but not sentences. But if Word tried
to
count sentences, most users would not be satisfied because it would
have to
count anything ending in a period as a sentence, which is what it
does when
you use Ctrl+click to select a sentence, and this includes the
periods after
abbreviations.


"garfield-n-odie" wrote in
message
...
This feature already exists within Word, so there is no need for
you to suggest it to Microsoft.

Connor wrote:

When i do my weekly composition for seventh grade it has to be a
minimum

of
fifteen sentences. If the word count feature could count sentences
as

well, I
would not have to do it manually.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to
the
suggestions with the most votes. To vote for this suggestion, click
the

"I
Agree" button in the message pane. If you do not see the button,
follow

this
link to open the suggestion in the Microsoft Web-based Newsreader
and

then
click "I Agree" in the message pane.



http://www.microsoft.com/office/comm...ocmanagemen t



  #7   Report Post  
Jezebel
 
Posts: n/a
Default Word's word count feature should be able to count sentences also

It is VBA, but all it takes in a macro is

msgbox("Sentences = " & activedocument.Sentences.Count)




"Suzanne S. Barnhill" wrote in message
...
I suspected this might be available through the readability statistics, but
(short of VBA) there's no way to access those without checking grammar,
which is a huge PITA.

--
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.

"Greg Maxey" wrote in message
...
Look at readability statistics. ToolsOptionsSpelling and Grammar and
check Show readability statistics. Consider the following:

Did Mr. Smith go to Washington? I don't know Mrs. Jones; you will have
to
ask Mr. Smith.


ToolsSpelling and Grammar.

Words: 18
Characters: 71
Paragraphs: 1
Sentences: 2



--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.

Suzanne S. Barnhill wrote:
Does it? Word Count counts pages, words, characters (with and without
spaces), paragraphs, and lines, but not sentences. But if Word tried
to
count sentences, most users would not be satisfied because it would
have to
count anything ending in a period as a sentence, which is what it
does when
you use Ctrl+click to select a sentence, and this includes the
periods after
abbreviations.


"garfield-n-odie" wrote in
message
...
This feature already exists within Word, so there is no need for
you to suggest it to Microsoft.

Connor wrote:

When i do my weekly composition for seventh grade it has to be a
minimum
of
fifteen sentences. If the word count feature could count sentences
as
well, I
would not have to do it manually.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to
the
suggestions with the most votes. To vote for this suggestion, click
the
"I
Agree" button in the message pane. If you do not see the button,
follow
this
link to open the suggestion in the Microsoft Web-based Newsreader
and
then
click "I Agree" in the message pane.



http://www.microsoft.com/office/comm...ocmanagemen t





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
The WordPerfect "Reveal Codes" method is so much easier to use. Torden Microsoft Word Help 8 April 19th 10 07:50 PM
Convert Word 2003 documents to WordPerfect formate Carol Microsoft Word Help 6 March 9th 06 07:11 AM
How do I set right and left alignment on the same line in Word? Matador Page Layout 1 November 9th 05 08:32 PM
Does Word have Keyboard Merges like Word Perfect does? Donnas Mailmerge 1 June 28th 05 09:30 PM
Boiletplates from Word Perfect linda Microsoft Word Help 1 January 28th 05 05:37 PM


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