| | | Jay Freedman |  |
| Posted: Sat Sep 20, 2008 6:51 pm Post subject: Re: Sentence Count |  |
On Sat, 20 Sep 2008 11:34:01 -0700, Fafa <Fafa@discussions.microsoft.com> wrote:
| Quote: | I want to know if there is a way to count the number of sentences without checking the spelling and grammar and getting the readability stats?
|
The number of sentences can be extracted from the readability statistics without running the spelling check with this little macro:
Sub SentenceCount() MsgBox Selection.Range.ReadabilityStatistics(4).Value _ & " sentences" End Sub
See LINK for instructions. You can assign a keyboard shortcut or a toolbar button to run the macro.
-- Regards, Jay Freedman Microsoft Word MVP FAQ: LINK Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. |
|