I have 2 tables, one serves as an extension of the other (in certain cases), joined on record number (autonumber).
My users have situations where they need to enter many records where the data in most fields is identical, and have asked for a way to do this efficiently.
I have tried using the "duplicate" button, but it only duplicates the record in one of the tables. I need something that will create the data in both tables.
I had an idea of writing the source data to a temporary local table with the fields that we want to copy. Then creating a loop in a macro for 1 to x times to append a record to table "A" and then append a record to table "B"
Questions:
1) I don't know how to do the code for the loop
2) I'm not sure when it ran the append queries, if the new records would end up with the shared record number - which is essential for data integrity.
Thanks in advance for your help.