View Single Post
  #3   Report Post  
Posted to microsoft.public.word.tables
zoobree zoobree is offline
external usenet poster
 
Posts: 1
Default Converting Multiple Tables to Text

I tried the code you suggested but it does nothing to my document. I suspect
it is because all of the tables are in the headers, there are multiple
sections in the document, and multiple headers in each section. If that's
the problem, is there some way I can create a nested loop to convert all of
the tables in all of the headers to text?

"Doug Robbins - Word MVP" wrote:

Use the following code in a macro

Dim i As Long
With ActiveDocument
For i = .Tables.Count To 1 Step -1
.Tables(i).ConvertToText
Next i
End With

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Hal" wrote in message
...
If one has a document that is composed of multiple tables is there an easy
way to select the whole document and convert all tables to text at once or
do
you have to convert each table individuallY? Thanks.