Skip to main content

Search

Search

Printing Different Template Or Layer In Middle Of 1 Record

Comments

1 comment

  • Avatar
    Legacy Poster

    Update: So far this is the work around for the issue of printing a different label within the same record.

    In my case I would like a different label to print after every 100 copies so I can sort and package every 100 labels easier without having to stop the printer. 

    Create field on layer of Quantity, set it as Serialized, Reset Serialized value after every 101 or new record. In the VB scripting of the Quantity Properties,

    OnPostSerialize add script.

    If Value = 101 Then

    Value = "SEPARATE PACKAGE"

    Else

    Value = ""

    End If

    This will cause Separate Package to print on the 101st label, so the operator when packaging needs to search for this...

    0

Please sign in to leave a comment.