From: John Doue on
I am sometimes dealing with documents which includes several tables. I
know how to remove them one by one while preserving their content, but
would like to automate the process. How do I do that please?

Thanks
--
John Doue
From: Graham Mayor on
How about:

Dim oTable As Table
For Each oTable In ActiveDocument.Tables
oTable.ConvertToText
Next oTable


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>



"John Doue" <notwobe(a)yahoo.com> wrote in message
news:Obz11cH4KHA.4336(a)TK2MSFTNGP04.phx.gbl...
>I am sometimes dealing with documents which includes several tables. I know
>how to remove them one by one while preserving their content, but would
>like to automate the process. How do I do that please?
>
> Thanks
> --
> John Doue


From: John Doue on
On 4/20/2010 3:12 PM, Graham Mayor wrote:
> Dim oTable As Table
> For Each oTable In ActiveDocument.Tables
> oTable.ConvertToText
> Next oTable

Thanks a million! Things look so simple, deceptively simple, I should be
ashamed!

Thanks again

--
John Doue