I have a table called PatientNames that contain Patient ID, LastName, Firstname, and MI. The primary key is Patient ID. This table is updated by importing a text file that has all the Patient Names and associated IDs (old and new). Since the Patient ID is the primary key only the new patients are added and I get the usual info box saying 31678 names could not be added. That is not a problem. The problem is that I now need to add a unique number for each patient to the table. Auto-number works at first, adding 1-31678. The next time I update the table auto-number starts with 92,000 (or something close) for the new patients and the next time will go to 128,000. It recounts all the records including the ones with the same primary key and goes from there. Is there any way to get it to start at 1 and just add 1 to the last number in the ID field for new Patients?
Thanks, Mike
Thanks, Mike