JT said:
I cannot change my autonumber from random to incremental. Any sugestions?
please help...
If my memory serves, you can't alter any of autonumber properties once
it's used. You would need to change the original autonumber to a plain
old number, save the table, add a new column and make it an autonumber
with incremental (which should be default anyway), then delete the old
column.
However, this is very risky move because if there are other tables
related to this table, the links will break. In such cases, consider
either using Cascade Update or if the largest number isn't that large,
insert the old values into the new autonumber.
Of course, you made a back-up, right?