Autonumber

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I inherited data base where each record has a manually assigned number. I
would like to make this same field an Autonumber but retain the originally
assigned numbers. There are no duplicates in the existing numbers. Any
ideas?

wal50
 
I should have added that this number is used for identification (the reason
for wanting to retain existing numbers). Gaps are not an issue nor is being
in sequence.
 
Create a new table that's identical to the existing table, except that the
ID field is an Autonumber.

Create an Append query to take all of the data from the existing table and
append it to the new table above.

Use the new table from now all: the next ID number generated will be one
more than the highest number you inserted.
 
Thanks Doug. It worked like a charm. I must have done something wrong
though since I ended up with the duplicate records but they were easily
identifiable and deleted.

wal50
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top