> Perhaps if you gave a bit more detail on precisely what you want to do.
>
[quoted text clipped - 12 lines]
>> Thanks,
>> Cliff
I would suggest that you show us the actual code that you tried to use.
How do you want the tables to be arranged in Excel? One Word table to a
worksheet? Or, all on one worksheet?
However, you don't need automation for this. Just use Ctrl+A, then Ctrl+C
in Word, then move to Excel and single cell selected, use Ctrl+V
It there is text between the tables that you don't want in Excel, run a
macro containing the following code to get rid of it:
Dim apara as Paragraph
For Each apara in ActiveDocument.Paragraphs
With apara.Range
If .Information(wdWithinTable) = False Then
.Delete
End If
End With
Next

Signature
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
> ---More detail per request---
>
[quoted text clipped - 41 lines]
>>> Thanks,
>>> Cliff
Cliff - 13 May 2008 00:07 GMT
Thanks Doug, I'll give this a try.
Cliff
On 5/11/08 11:41 PM, in article empLGI#sIHA.2292@TK2MSFTNGP03.phx.gbl, "Doug
Robbins - Word MVP" <dkr@REMOVECAPSmvps.org> wrote:
> I would suggest that you show us the actual code that you tried to use.
>
[quoted text clipped - 15 lines]
> End With
> Next