Meryl said:
I have a table where I want to assign a sequential number to specific records
starting with 100. What is the best way to do this and how?
Identify the fields and values that can be used to specify
the records that need to be changed.
Spcify the fields and values that can be used to determine a
unique sort order for the records to be changed.
Decide if the sequential numbers will ever be changed and
under what conditions. If they might need to be renumbered
fairly often, then use a calculated field in a Select query
to renumber the records on the fly instead of using a field
in the table.
If they need to renumbered only under very unusual
circumstances, you can safely(?) save the numbers in the
table using an Update query.