The macro is erroring out because the "object doesn't refer to a table." If
I go into the doc and see where the cursor is, it's at the bottom of the doc
and I cannot move it (via arrow keys) up one line to get the cursor into the
table - thus the error, I think.
Is there something I can do differently in the macro so I'm always located
in the table and the macro can run?
ActiveDocument.Tables(1).ConvertToText
or if there is more than one and this is the last table, use:
With ActiveDocument
.Tables(.Tables.Count).ConvertToText
End With
--
Hope this helps,
Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to obtain my services on
a paid professional basis.
"mnt" <m...@discussions.microsoft.com> wrote in message
news:AD8245C0-F488-44BE...@microsoft.com...