No... I turned off all options except for the bottom two (Check grammar
with spelling, and Show readability statistics), and when I click the
Grammar button (there is a distinct tool that checks only grammar), the
statistics pop up immediately. Caveat: there are a couple of grammar rules
that are not in the list of things you can turn off. If your document
contains any "violations" of those rules, you'll need to click Ignore rule.
But, FWIW, I wrote a very crude macro that gives just the readability
statistics (posted it in this newsgroup back on August 4th). Here's what I
wrote:
You might use a macro. This is extremely crude, but demonstates one approach
you might use. The following macro's formatting is awful, but...
Sub Readability()
Words$ = ActiveDocument.Content.ReadabilityStatistics(1).Value
Chars$ = ActiveDocument.Content.ReadabilityStatistics(2).Value
Paras$ = ActiveDocument.Content.ReadabilityStatistics(3).Value
Sents$ = ActiveDocument.Content.ReadabilityStatistics(4).Value
SperP$ = ActiveDocument.Content.ReadabilityStatistics(5).Value
WperP$ = ActiveDocument.Content.ReadabilityStatistics(6).Value
CperW$ = ActiveDocument.Content.ReadabilityStatistics(7).Value
Passv$ = ActiveDocument.Content.ReadabilityStatistics(8).Value
Flesch$ = ActiveDocument.Content.ReadabilityStatistics(9).Value
FleKi$ = ActiveDocument.Content.ReadabilityStatistics(10).Value
MsgBox Words$ + " Words" + Chr$(13) + Chr$(10) + _
Paras$ + " Paragraphs" + Chr$(13) + Chr$(10) + _
Sents$ + " Sentences" + Chr$(13) + Chr$(10) + _
SperP$ + " Sentences per Paragraph" + Chr$(13) + Chr$(10) + _
WperP$ + " Words per Sentence" + Chr$(13) + Chr$(10) + _
CperW$ + " Characters per Word" + Chr$(13) + Chr$(10) + _
Passv$ + " Passive Sentences" + Chr$(13) + Chr$(10) + _
Flesch$ + " Flesch Reading Ease" + Chr$(13) + Chr$(10) + _
FleKi$ + " Flesch-Kincaid Grade Level"
End Sub