If you are asking about adding the numbers to existing records in the table,
Marsh's answer will work. If, on the other hand, you are asking for a
technique to add sequential numbers to new records you are adding, then you
will need to determine what the next number is and whether the record meets
the criteria to have the number added. For this, you can use the DMax
function to determine the highest existing number and add 1 to it:
intNextSeqNum = Nz(DMax("[SeqNumFld]", "AnyOleTable", "Criteria"), 0) + 1
Critera would be the rules to determine which records are included.