1) Insert a column
2) In the first row put '0000
3) In the second row put '0001
4) Fill down to your hearts content
5) You now have 10000 unique 4 digit ids
12 digits are 10^12 = 1,000,000,000,000 possibilities.
4 alphadigits are 36^4 = 1,679,616 = a different alternatives.
1,679,627 = b is the next higher prime number. If you have less than a
articles you can define a table with b elements and convert your 12
digit strings as follows:
c = 12_digit_string mod b
if c not taken then c is new product code: table[c] = 12_digit_string
if c already taken then increase c until table[] is empty: set table[c
+i] = 12_digit_string
(if c+i >= b then start over with 1...)
finally convert the index c or c+i to 4 digit string (base 36)
If 12_digit_string mod b will cluster your idents to much then take
another function.
Data>Text to Columns>Fixed Width>Next. Click after every 4th number to draw a
break line.
The Next>Column Data Format>Text for each column(in case a 4-digit number has a
0 as first digit.
Finish.
Gord Dibben MS Excel MVP
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.