Set next auto number value

T

thierry

I have a table that already contains data.
I need to set a column to auto number but to avoid duplication of a value I
would need to set the next value manually.

It also seems I cannot change a column type from num to autonumber.

What are my options?
Thanks!
 
J

Joan Wild

You could create a copy of the structure of your table, add an autonumber
column, and remove your existing number column.

You can run an append query, appending the old table into the new (you can
append your number field in the old into the autonumber field in the new).
 

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

Top