#1   Report Post  
Posted to microsoft.public.word.docmanagement
Sharon M.
 
Posts: n/a
Default Readability stats ...

Hi all,

Is there a real quick and easy way to run Readability stats *without* having
to stop at each instance and accept/reject? What I want to do is get an
*instant* assessment of a document "as is" and then look at the suggestions
for improvement later.

I've looked through earlier threads on this and, while I agree with the
usefulness of running the stats (or otherwise), I really need to do it.

Thanks,

Sharon M.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Herb Tyson [MVP]
 
Posts: n/a
Default Readability stats ...

You'd need a macro--you can assign it to a keystroke or toolbar tool, or
stick it in a menu. Here's a quick & dirty one that does it, albeit not in
the identical format at the one that's build in:

Sub Readability()
Words$ = ActiveDocument.Content.ReadabilityStatistics(1).Va lue
Chars$ = ActiveDocument.Content.ReadabilityStatistics(2).Va lue
Paras$ = ActiveDocument.Content.ReadabilityStatistics(3).Va lue
Sents$ = ActiveDocument.Content.ReadabilityStatistics(4).Va lue
SperP$ = ActiveDocument.Content.ReadabilityStatistics(5).Va lue
WperP$ = ActiveDocument.Content.ReadabilityStatistics(6).Va lue
CperW$ = ActiveDocument.Content.ReadabilityStatistics(7).Va lue
Passv$ = ActiveDocument.Content.ReadabilityStatistics(8).Va lue
Flesch$ = ActiveDocument.Content.ReadabilityStatistics(9).Va lue
FleKi$ = ActiveDocument.Content.ReadabilityStatistics(10).V alue
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




--
Herb Tyson MS MVP
http://www.herbtyson.com
Please respond in the newsgroups so everyone can follow along.
"Sharon M." wrote in message
...
Hi all,

Is there a real quick and easy way to run Readability stats *without*
having
to stop at each instance and accept/reject? What I want to do is get an
*instant* assessment of a document "as is" and then look at the
suggestions
for improvement later.

I've looked through earlier threads on this and, while I agree with the
usefulness of running the stats (or otherwise), I really need to do it.

Thanks,

Sharon M.



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Sharon M.
 
Posts: n/a
Default Readability stats ...

Thanks Herb,

I'm looking for something really basic as I have to pass on the instructions
to content developers (of varying skills) who are scattered in various
locations. Some of them will freak out when I say "macro". Any tips and
tricks up your sleeve for something built in to Word? I guess not ...

Best, Sharon.

"Herb Tyson [MVP]" wrote:

You'd need a macro--you can assign it to a keystroke or toolbar tool, or
stick it in a menu. Here's a quick & dirty one that does it, albeit not in
the identical format at the one that's build in:

Sub Readability()
Words$ = ActiveDocument.Content.ReadabilityStatistics(1).Va lue
Chars$ = ActiveDocument.Content.ReadabilityStatistics(2).Va lue
Paras$ = ActiveDocument.Content.ReadabilityStatistics(3).Va lue
Sents$ = ActiveDocument.Content.ReadabilityStatistics(4).Va lue
SperP$ = ActiveDocument.Content.ReadabilityStatistics(5).Va lue
WperP$ = ActiveDocument.Content.ReadabilityStatistics(6).Va lue
CperW$ = ActiveDocument.Content.ReadabilityStatistics(7).Va lue
Passv$ = ActiveDocument.Content.ReadabilityStatistics(8).Va lue
Flesch$ = ActiveDocument.Content.ReadabilityStatistics(9).Va lue
FleKi$ = ActiveDocument.Content.ReadabilityStatistics(10).V alue
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




--
Herb Tyson MS MVP
http://www.herbtyson.com
Please respond in the newsgroups so everyone can follow along.
"Sharon M." wrote in message
...
Hi all,

Is there a real quick and easy way to run Readability stats *without*
having
to stop at each instance and accept/reject? What I want to do is get an
*instant* assessment of a document "as is" and then look at the
suggestions
for improvement later.

I've looked through earlier threads on this and, while I agree with the
usefulness of running the stats (or otherwise), I really need to do it.

Thanks,

Sharon M.




  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Herb Tyson [MVP]
 
Posts: n/a
Default Readability stats ...

If there's a built-in way to trigger just the readability stats, I haven't
managed to trip over it yet. You could say "Well, you could use a full scale
Visual Basic for Applications program or, if that's too much, maybe just a
simple macro".

When sleight of hand doesn't work, try sleight of tongue. ;-)

--
Herb Tyson MS MVP
http://www.herbtyson.com
Please respond in the newsgroups so everyone can follow along.
"Sharon M." wrote in message
...
Thanks Herb,

I'm looking for something really basic as I have to pass on the
instructions
to content developers (of varying skills) who are scattered in various
locations. Some of them will freak out when I say "macro". Any tips and
tricks up your sleeve for something built in to Word? I guess not ...

Best, Sharon.

"Herb Tyson [MVP]" wrote:

You'd need a macro--you can assign it to a keystroke or toolbar tool, or
stick it in a menu. Here's a quick & dirty one that does it, albeit not
in
the identical format at the one that's build in:

Sub Readability()
Words$ = ActiveDocument.Content.ReadabilityStatistics(1).Va lue
Chars$ = ActiveDocument.Content.ReadabilityStatistics(2).Va lue
Paras$ = ActiveDocument.Content.ReadabilityStatistics(3).Va lue
Sents$ = ActiveDocument.Content.ReadabilityStatistics(4).Va lue
SperP$ = ActiveDocument.Content.ReadabilityStatistics(5).Va lue
WperP$ = ActiveDocument.Content.ReadabilityStatistics(6).Va lue
CperW$ = ActiveDocument.Content.ReadabilityStatistics(7).Va lue
Passv$ = ActiveDocument.Content.ReadabilityStatistics(8).Va lue
Flesch$ = ActiveDocument.Content.ReadabilityStatistics(9).Va lue
FleKi$ = ActiveDocument.Content.ReadabilityStatistics(10).V alue
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




--
Herb Tyson MS MVP
http://www.herbtyson.com
Please respond in the newsgroups so everyone can follow along.
"Sharon M." wrote in message
...
Hi all,

Is there a real quick and easy way to run Readability stats *without*
having
to stop at each instance and accept/reject? What I want to do is get an
*instant* assessment of a document "as is" and then look at the
suggestions
for improvement later.

I've looked through earlier threads on this and, while I agree with the
usefulness of running the stats (or otherwise), I really need to do it.

Thanks,

Sharon M.






  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Sharon M.
 
Posts: n/a
Default Readability stats ...

Ha! Good tip. ;-)

Guess if you haven't found a back door then there isn't one.

I'm so *sure* there used to be ... having cast my mind back a little though
I think it was probably a feature of WordPerfect ... you clicked a button,
you got the stats (along with an assessment of the (probable) education level
of the writer) and everything was just dandy.

S.

"Herb Tyson [MVP]" wrote:

If there's a built-in way to trigger just the readability stats, I haven't
managed to trip over it yet. You could say "Well, you could use a full scale
Visual Basic for Applications program or, if that's too much, maybe just a
simple macro".

When sleight of hand doesn't work, try sleight of tongue. ;-)

--
Herb Tyson MS MVP
http://www.herbtyson.com
Please respond in the newsgroups so everyone can follow along.
"Sharon M." wrote in message
...
Thanks Herb,

I'm looking for something really basic as I have to pass on the
instructions
to content developers (of varying skills) who are scattered in various
locations. Some of them will freak out when I say "macro". Any tips and
tricks up your sleeve for something built in to Word? I guess not ...

Best, Sharon.

"Herb Tyson [MVP]" wrote:

You'd need a macro--you can assign it to a keystroke or toolbar tool, or
stick it in a menu. Here's a quick & dirty one that does it, albeit not
in
the identical format at the one that's build in:

Sub Readability()
Words$ = ActiveDocument.Content.ReadabilityStatistics(1).Va lue
Chars$ = ActiveDocument.Content.ReadabilityStatistics(2).Va lue
Paras$ = ActiveDocument.Content.ReadabilityStatistics(3).Va lue
Sents$ = ActiveDocument.Content.ReadabilityStatistics(4).Va lue
SperP$ = ActiveDocument.Content.ReadabilityStatistics(5).Va lue
WperP$ = ActiveDocument.Content.ReadabilityStatistics(6).Va lue
CperW$ = ActiveDocument.Content.ReadabilityStatistics(7).Va lue
Passv$ = ActiveDocument.Content.ReadabilityStatistics(8).Va lue
Flesch$ = ActiveDocument.Content.ReadabilityStatistics(9).Va lue
FleKi$ = ActiveDocument.Content.ReadabilityStatistics(10).V alue
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




--
Herb Tyson MS MVP
http://www.herbtyson.com
Please respond in the newsgroups so everyone can follow along.
"Sharon M." wrote in message
...
Hi all,

Is there a real quick and easy way to run Readability stats *without*
having
to stop at each instance and accept/reject? What I want to do is get an
*instant* assessment of a document "as is" and then look at the
suggestions
for improvement later.

I've looked through earlier threads on this and, while I agree with the
usefulness of running the stats (or otherwise), I really need to do it.

Thanks,

Sharon M.






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
how can I reset the readability statistics of a Word document peterc Microsoft Word Help 1 October 31st 05 12:25 AM
check readability pisces Microsoft Word Help 0 October 21st 05 09:01 AM
can't add readability option in Word/grayed out. how to fix? Iggy Microsoft Word Help 0 July 19th 05 01:45 AM
readability kklmn Microsoft Word Help 2 June 15th 05 08:21 PM
Readability differences Goomba Microsoft Word Help 1 June 10th 05 02:55 PM


All times are GMT +1. The time now is 07:36 AM.

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"