Hi Dorna,
First, make sure that there are no merged cells anywhere in the table.
Things could get complicated if there are any paragraph marks, line
breaks, tabs etc. in the data. If there aren't, make a spare copy of the
document, delete everything except the table, convert the table to text,
save the result as a plain text file, and try importing that into
Access. (If there is in fact more than one table in the document - and
700 pages is *big* for a Word table - you can convert them all to text
and remove any material between them.)
Otherwise, you could try this:
-Save the document in HTML format, and try importing the table from
there.
Or this:
-Use Word's Replace function to replace all paragraph marks, line breaks
and tabs in the table with combinations of ordinary characters that
don't appear in the data (e.g. <** for a paragraph mark)
-Proceed as above to get the data into Access
-Use update queries to replace your paragraph mark and line feed symbols
with Chr(13) & Chr(10), and tabs with Chr(0) - bearing in mind that
Access textboxes don't know about tab stops.
If none of these work, it's always possible to use Automation to read
the table cell by cell directly from Word and create records in Access.