|
#1
|
|||
|
|||
|
Is it possible to combine the sequential numbering rule and the UPCA barcode rule?
My starting number would be 850000 and ending at 970000. I would need to use the UPCA Barcode rule so the checksum is calculated correctly. I know the easy way would be the create the list as a CSV and import, but I want to know if there is a way to avoid having to do the extra step of creating a separate file. Thanks for your help/thoughts on this one!
__________________
"If the good Lord had intended us to walk he wouldn't have invented roller-skates." Willy Wonka
|
|
#2
|
|||
|
|||
|
I use a combination of two rules;
Code:
return FormatNumber("00000000000" 849999 + CurrentRecordNumber());
Code:
return MakeUPCABarcode(Rule("numbering"))
Code:
return 849999 + CurrentRecordNumber(); Last edited by jfox@gill-line.com; January 20th, 2009 at 07:05 AM.. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|