Sentence Count

F

Fafa

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?
 
J

Jay Freedman

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 http://www.gmayor.com/installing_macro.htm for instructions. You can assign
a keyboard shortcut or a toolbar button to run the macro.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top