A family of Microsoft word processing software products for creating web, email, and print documents.
You could use a macro containing the following code to convert all of the tables in a single document
Dim i As Long
With ActiveDocument
For i = .Tables.Count To 1 Step -1
.Tables(i).ConvertToText
Next i
End With
To convert all of the tables in all of the documents in a folder, you could modify the code in the
article "Find & ReplaceAll on a batch of documents in the same folder” at:
http://www.word.mvps.org/FAQs/MacrosVBA/BatchFR.htm
by substituting the above code for the replace routine in the code in that article.