The data I have is unfotunately in two tables:
Table 1: name, date died, place died etc.
Table 2: up to four records with the same ID as table 1
each record has a separate piece of additional information such as
occupation, where died etc.
I wish to combine into one new table
OK... I guess...
Create a new Query joining Table1 to *four copies* of Table2, joining by ID;
if there might be ID's for which one or more records are missing from Table2,
use a Left Join ("show all records in table1 and matching records in table2").
Apply criteria to the Table2 records so that the first joined instance selects
only Occupation records; the second selects only Where died; etc.
If the table's contents don't allow you to do this unambiguously you've got
some real problems. In particular, if you're counting on the order of records
in the table to distinguish which kind of data is which, you are REALLY in
trouble.
I'm not sure this helps, because I'm not sure I understand the nature of the
tables. You have a "place died" in table1, and a "where died" in Table2. Are
they the "same"? do you want to replace one with the other?
Perhaps you could post the actual fieldnames in the format
Tablename
FirstFieldName <datatype>
SecondFieldName <datatype>
ThirdFieldName <datatype>
and perhaps some examples of the data.