Hi,
One of the fields in my table is populated by a field entered in a form by a user. Is there a way to add an incrementing value to the end of this value. The autonumber should reset evry time a new value is entered into the field.
The values are like this:
45354
34545
23478
45354
45354
34545
I want to be able to add an autonumber for each different value. Like this:
45354-001
34545-001
23478-001
45354-002
45354-003
34545-002
The value 45354 is appended with the values 001, 002, 003.
The value 34545 is appended with the values 001, 002
The value 23478 is appended with the value 001
If the user entered another value of 45354, it would be appended with 004. I hope this is making sense. I want to have multiple autonumbering for each distinct value entered by the user and if the user enters a value that is already in the table, then it is appended with the next number in the sequence for that value.
I hope someone can help with this.
One of the fields in my table is populated by a field entered in a form by a user. Is there a way to add an incrementing value to the end of this value. The autonumber should reset evry time a new value is entered into the field.
The values are like this:
45354
34545
23478
45354
45354
34545
I want to be able to add an autonumber for each different value. Like this:
45354-001
34545-001
23478-001
45354-002
45354-003
34545-002
The value 45354 is appended with the values 001, 002, 003.
The value 34545 is appended with the values 001, 002
The value 23478 is appended with the value 001
If the user entered another value of 45354, it would be appended with 004. I hope this is making sense. I want to have multiple autonumbering for each distinct value entered by the user and if the user enters a value that is already in the table, then it is appended with the next number in the sequence for that value.
I hope someone can help with this.