I'm using xl to generate UPC numbers.
The first digit (from the left) is the UPC type.
The next five digits are the Manufacturer code.
The next five digits are the product code which is assigned by the manufacturer.
The final digit is the check digit.
so if my lists consists of:
xxxxxx10000x
xxxxxx10001x
xxxxxx10002x
I would like to be able to get the next number which would be:
xxxxxx10003x
What would be the most efficient way to get it ?
The first digit (from the left) is the UPC type.
The next five digits are the Manufacturer code.
The next five digits are the product code which is assigned by the manufacturer.
The final digit is the check digit.
so if my lists consists of:
xxxxxx10000x
xxxxxx10001x
xxxxxx10002x
I would like to be able to get the next number which would be:
xxxxxx10003x
What would be the most efficient way to get it ?