Hello all,
I need to create a unique 5 digit code that is generated from a 4 digit alphanumeric string. See below for an example.
The 5 digit code could be any number, as long as it is unique based on the 4 digit input. I thought about assigning numbers to letters but the numbers get too large i.e. ZZZZ would be 26262626. I have over a thousand unique 4 digit codes and I'd prefer not to have to go one by one assigning them 5 digit codes manually. Any guidance is greatly appreciated!
I need to create a unique 5 digit code that is generated from a 4 digit alphanumeric string. See below for an example.
4 Digit Alphanumeric Code | 5 Digit Code |
ABBO | 10001 |
ABEL | 10002 |
ABER | 10003 |
ABRA | 10004 |
ADAD | 10005 |
ADAD | 10005 |
ADAD | 10005 |
ADAD | 10005 |
ADAM | 10006 |
ADAM | 10006 |
ADAM | 10006 |
ADLE | 10007 |
ADLE | 10007 |
ADST | 10008 |
ADST | 10008 |
AHRE | 10009 |
AHRE | 10010 |
AICF | 10011 |
The 5 digit code could be any number, as long as it is unique based on the 4 digit input. I thought about assigning numbers to letters but the numbers get too large i.e. ZZZZ would be 26262626. I have over a thousand unique 4 digit codes and I'd prefer not to have to go one by one assigning them 5 digit codes manually. Any guidance is greatly appreciated!