J
jmartino
WD2000: Table Jumps to Different Position Than Placed
Hi all:
I am working on a word VBA macro that extracts data from
an Oracle Repository via an ODBC driver.
Some of the data must be formatted in tables.
The macro runs fine for about 50 pages, then the rest of
the data is written fine but the remainder of the tables
are all piled up at the end of the doc (?)
I am adding the tables as I go like this:
Set rng = ActiveDocument.Content
rng.Collapse Direction:=wdCollapseEnd
dim tbl as Table
Set tbl = ActiveDocument.Tables.Add(rng, 1, 7)
Please help, I am lost
Hi all:
I am working on a word VBA macro that extracts data from
an Oracle Repository via an ODBC driver.
Some of the data must be formatted in tables.
The macro runs fine for about 50 pages, then the rest of
the data is written fine but the remainder of the tables
are all piled up at the end of the doc (?)
I am adding the tables as I go like this:
Set rng = ActiveDocument.Content
rng.Collapse Direction:=wdCollapseEnd
dim tbl as Table
Set tbl = ActiveDocument.Tables.Add(rng, 1, 7)
Please help, I am lost