Another one...
[tblAddresses] contains Addresses of different types: Parents, Students, Invoices... The key index is [intAddressID] being an autonumber field.
Each of the tables [tblParents], [tblStudents] and [tblInvoices] have a simple reference to one intAddressID from [tblAddresses].
While I was working on the database I continously recreated the addresses from the start while somebody else needed to work on the Invoices already. So I have a different [intAddressID] set than the [tblInvoices] from that person refers to (the old version) which I need to join now.
If it would NOT BE an autonumber field, I could simple copy&paste the old Invoice's Addresses into the new [tblAddresses] so the references in [tblInvoices] would be correct. However the Autonumber field does not allow copying the exact [intAddressID] but instead keeps incrementing the ID -> wrong references in [tblInvoices] to [tblAddresses].
Does anybody know a tricky procedure do so anyway? (Changing Autonumber to Number, copy&paste and changing it back to Autonumber doesnt work.)
Thanks
waldemar
[tblAddresses] contains Addresses of different types: Parents, Students, Invoices... The key index is [intAddressID] being an autonumber field.
Each of the tables [tblParents], [tblStudents] and [tblInvoices] have a simple reference to one intAddressID from [tblAddresses].
While I was working on the database I continously recreated the addresses from the start while somebody else needed to work on the Invoices already. So I have a different [intAddressID] set than the [tblInvoices] from that person refers to (the old version) which I need to join now.
If it would NOT BE an autonumber field, I could simple copy&paste the old Invoice's Addresses into the new [tblAddresses] so the references in [tblInvoices] would be correct. However the Autonumber field does not allow copying the exact [intAddressID] but instead keeps incrementing the ID -> wrong references in [tblInvoices] to [tblAddresses].
Does anybody know a tricky procedure do so anyway? (Changing Autonumber to Number, copy&paste and changing it back to Autonumber doesnt work.)
Thanks
waldemar