-----Original Message-----
I have a table with a field called Number. I need this
field to be incremental. On record one this field must be
1 on record two, it must be 2, etc.
Is it possible?
.
Raul,
This is possible, but what are you using the number for?
The Autonumber is a possibility, however, you must
understand that it simply provides for a UNIQUE record
identity. It is not the best solution if a "gap" in your
sequence is unacceptable. For example, if you are using
this number as an Invoice No, you may get gaps for records
that have been started, but not committed. As a result,
your number sequence may "skip". If having a gap in your
numbering sequence is unacceptable, email me and I will
send you the code that I use to insure that a all record
numbers are properly sequenced and accounted for.
Otherwise, simply using the Autonumber field should work
fine.