From: John Doue on 20 Apr 2010 06:49 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 20 Apr 2010 08:12 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 20 Apr 2010 14:16 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
|
Pages: 1 Prev: alignment issue in a document Next: Copy from excel to Word |