I need to export the sliced parts to xl2003 (where there's a 65k limit per
sheet). The slicing into parts can be simple. Was thinking to just go by the
row#, eg rows1-60k in table1, row 60,001-120k in table2, etc. But I don't
know the steps to do this in access. Thanks.
Since Access tables don't have "row numbers" this is more than a bit
difficult. The limit on spreadsheet size in Excel 2003 is, I'm pretty sure,
two billion odd rows; I'm less sure about the exporting (it may be limited to
the older 64K).
Again - do you have a field *IN THE TABLE* which can serve as a row number?
There isn't one builtin, but there very well might be one that was defined
when this table was created. If so, you can use a criterion
BETWEEN 1 AND 60000
on the first export.
BETWEEN 60001 AND 120000
on the second and so on.
Note also that it is not necessary to create a new table to export to Excel;
you can and should export directly from the Query.
John W. Vinson [MVP]