is it possible to write macro to convert tables to text

G

Graham Mayor

Do you mean like

Dim oRng As Range
Dim oTable As Table
For Each oTable In ActiveDocument.Tables
oTable.ConvertToText ", "
Next oTable


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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Top