I'm trying to create a system, whereby an incrementing serial number is automatically assigned to each new entry.
The serial needs to increment from 001 to 999, and then "roll-over" back to 001. Duplicate entries are allowed, because the user will enter other identifying data that when combined the the serial will form a unique "document number". The key is that all "document numbers" must have the same number of digits, which is why my serial number cannot increment above 999. Any ideas?
The serial needs to increment from 001 to 999, and then "roll-over" back to 001. Duplicate entries are allowed, because the user will enter other identifying data that when combined the the serial will form a unique "document number". The key is that all "document numbers" must have the same number of digits, which is why my serial number cannot increment above 999. Any ideas?