Function InsertText(TextString As String) As Range
Dim nStart As Long
Dim nEnd As Long
nStart = Selection.Start
Selection.TypeText TextString
nEnd = Selection.End
Set InsertText = ActiveDocument.Range(nStart, nEnd)
End Function
As you can see returned count of lines doesn't correspond to reality
I would regard the values returned by .ComputeStatistics as
"approximations" rather than proper statistical values, i.e. "facts".
Clearly if they are approximations it would be useful to have some info.
about the possible margin of error/spread but I don't think
we get that either.
Peter Jamieson