Jump to content

Same address grouped into one envelope


mlm61

Recommended Posts

hello all, 1st post, so thanks for help advance.

I am doing a mailing, data file has addresses for recipients. normally not an issue I do this type of mailing with no problems, but here is my challenge.

 

Some of recipients have the same mailing address and I would like to group them into one package (envelope). I am using 3of9 barcoding. How would I group the same addresses into one package (envelope) and have the barcode reflect the correct page count?

 

This is the rule I use for my barcode now:

 

var myHex = Number(FusionPro.Composition.totalPages/2).toString(16);

paddedHex = Right("00" + myHex,2);

// Say we have 260 pages. We do not want the barcode to say insert 5.

if (Number(FusionPro.Composition.totalPages/2)>255) {

paddedHex = "FF";

}

finalHex = ToUpper("*" + paddedHex + "*");

return finalHex;

 

So I guess I am looking for a rule or Java script to do grouping and barcoding.

 

Thanks much for any and all help.

Link to comment
Share on other sites

Can you post an example of the data, and whatever you have so far for a FusionPro template, along with a mockup of what the output should be? I don't think there's enough information (at least not for me) to be able to answer the question.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...