In a multiuser environment what is the best method to find out what autonumber was assigned to a record that you just inserted into a table? I have added a date field to a record and insert the current time/date (from Now() function) and then query back on the table using the insert date/time as criteria. This will not work however when inserting records in a code loop because the now() function only has precision to the second and many records can be inserted within one second. The only thing that I have come up with is to put a delay of more than one second inside the code loop. This is a backassward way of achieving the desired result because it slows code execution. Any ideas out there?