Perhaps something like this:
Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oTbl As Word.Table
Dim lngTable As Long
Dim lngIndex As Long, lngRow As Long, lngCount As Long
Dim arrCounts() As String
Dim oRng As Range
Dim oDoc As Document
ReDim arrCounts(1 To ActiveDocument.Tables.Count)
For lngTable = 1 To ActiveDocument.Tables.Count
Set oTbl = ActiveDocument.Tables(lngTable)
For lngRow = 2 To oTbl.Rows.Count
Set oRng = oTbl.Cell(lngRow, oTbl.Columns.Count).Range
oRng.End = oRng.End - 1
arrCounts(lngTable) = oRng.ComputeStatistics(wdStatisticWords)
Next lngRow
Next lngTable
lbl_Exit:
Set oDoc = Documents.Add
Set oTbl = oDoc.Tables.Add(oDoc.Range, UBound(arrCounts), 2)
For lngIndex = 1 To UBound(arrCounts)
oTbl.Cell(lngIndex, 1).Range.Text = "Tabel " & lngIndex & " computed word count is: "
oTbl.Cell(lngIndex, 2).Range.Text = arrCounts(lngIndex)
Next
Exit Sub
End Sub