Can anyone tell me if it is possible to combine two access databases (with
same column headings) and how it is done.
Do you mean two *Databases* - different .mdb files, each with potentially many
tables, forms, reports, and other objects?
Or do you mean two *Tables* - since you refer to column headings I'd guess the
latter?
If two Tables, are these tables related to any *other* tables in your
database? If not, it's pretty easy; create a Query based on one of the tables,
select all the fields, and run an Append query appending the data to the other
table. If you have an Autonumber field just don't include it, and you'll get
(new and different) autonumber values for the appended records.
If you do have relationships to other tables and possibly duplicate primary
key values in the two tables, this can get to be a real chore. Post back with
more details if this is an issue.
John W. Vinson [MVP]