>Hi guys,
>
[quoted text clipped - 15 lines]
>of knwledge that I'm lacking to advise me on how to combine the contents of
>these two tables?
What do you want to use as the ID if there are two records in the two
tables which have the same ID? Are these tables stand-alone, or are
they linked by ID to some OTHER table or tables?
If there are no tables in a "many" relationship to either of these
tables, you may be OK. Create a THIRD table, by copying one of these
*design mode only*. Change the datatype of the Primary Key to
autonumber (and make any other field type or size changes which you
want in the final table).
Then run two Append queries, appending everything BUT the ID field
into this new table. The ID will autonumber, so the values in the ID
field will not match the ones you already have - but if there are no
related tables, and if you properly conceal the actual value of the
autonumber from view, this shouldn't matter.
John W. Vinson[MVP]