Print The Label Copies Field
I have a label that uses a database. The users are setting the number of copies to print for each record in the Print Dialog selection.
1(3),2(5),3(8),4(12).....
Record 1 is printing 3 labels,
Record 2 is printing 5 labels
Record 3 is printing 8 labels
I need to print the quantity for each label on the label. One each copy of label 1, I need a field that states "Copies=3", On each copy of label 2, I need a field that states "Copies=5", etc...
Is this something I can accomplish with Serialization or do I need a VB script.
-
Create a text object on the label, set the data source type to be Event based VB script, and edit the "OnNewRecord" script to have the below expression:
value = Format.IdenticalCopiesOfLabel
Job done!
0 -
Thanks!
0
Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.
Kommentare
2 Kommentare