Is there are workaround for the Passive sentences issue in Readability stats? I have seen this issue mentioned going back over several years, but no working answer. The following code always returns zero, but grammar checker does not:
Sub Stats()Dim Stats As String
For Each rs In ActiveDocument.Content.ReadabilityStatistics
Stats = Stats + rs.Name & " - " & rs.Value & vbCr
Next rs
MsgBox Stats, vbOKOnly, "Readability Statistics"
Stats = ""
End Sub
If there is no fix in Word, does anyone know of a good third party option? We would like to have statistics in a comment on a paragraph by paragraph level.
Thanks,
Marc Wiener
Gartner, Inc.
Marc Wiener