jalberts1 Posted September 1, 2017 Share Posted September 1, 2017 I have a post card with a record count of 300 names and addresses. I want to compose the 300 plus an additional 100 post cards with no names. Is there an easy way to have the extra blank 100 appended to the output file? Thank you, John Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted September 5, 2017 Share Posted September 5, 2017 In OnRecordStart: var lastRecord = ExternalDataFileEx(PrimaryInputFile()).recordCount; if (FusionPro.Composition.inputRecordNumber == lastRecord) { FusionPro.Composition.repeatRecordCount = 101; if (FusionPro.Composition.repeatRecordNumber > 1) { for (var fieldName in FusionPro.Fields) FusionPro.Composition.AddVariable(fieldName, ""); } } Quote Link to comment Share on other sites More sharing options...
dreimer Posted September 5, 2017 Share Posted September 5, 2017 Wow, this is great, never knew this could be done. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.