Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
My bolding.Help said:Each item in the Words collection is a Range object that represents one word. There is no Word object.
Sub CountEm()
MsgBox Selection.Range.ComputeStatistics(wdStatisticWords) _
& vbCrLf & Selection.Range.Words.Count
End Sub
Dim j As Long
For j = 1 To Selection.Range.ComputeStatistics(wdStatisticWords)
MsgBox Selection.Range.Words(j)
Next