![]() |
Pulling in PDF pages
1 Attachment(s)
Good morning,
I have a rule that I need a little help on. The client is sending us one very large pdf file and I need to split it into single record pdfs by the page count in their data. Record 1 would be pdf pgs 1-6 Record 2 would be pdf pgs 7-10 Record 3 would be pdf pgs 11-12 Record 4 would be pdf pgs 13-16 Record 5 wuold be pdf pgs 17-22 etc. Only using the "Count" column in the data, I have Record 1 working using the "graphicRuleNeedsHelp" rule. I just can't figure out how to add the previous record page Counts to the current record page Counts to get the start and ending numbers on the subsequent records. NOTE: I have a rule, "graphicRuleWorks" which works correctly because I added 2 columns to the data with formulas to get the "start" and "end" pdf pages. I can use this rule, however, I would rather just use their "Count" column they supply. I'm uploading the collected file for a visual. Thanks in advance, Lisa |
Re: Pulling in PDF pages
In JavaScript Globals add
Code:
var gCount = 1; Code:
var result = []; Code:
gCount = gCount + StringToNumber(Field("Count")); Also, in the files you uploaded you'll need to assign the second page the type of "Overflow" in Page Usage. |
Re: Pulling in PDF pages
2 Attachment(s)
Hi Scott,
Thanks for getting back to me. I'm not sure if it's something I'm doing (or not doing), but the output isn't working correctly. I may have not explained it clearly the first time. I'll attach screen captures ... sorry, they're BIG screen captures. This is how my output looks now with the new rule ... http://forums.pti.com/attachment.php...5&d=1540497427 This is what I need ... http://forums.pti.com/attachment.php...4&d=1540496780 Thanks again, Lisa |
Re: Pulling in PDF pages
Sorry about that, I forgot one more rule.
Add this to an OnRecordEnd rule: Code:
gCount = gCount + StringToNumber(Field("Count")); |
Re: Pulling in PDF pages
Perfect!
Thank you so much Scott! Lisa |
All times are GMT -7. The time now is 02:40 PM. |
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2022, Jelsoft Enterprises Ltd.
(c) 2011, PTI Marketing Technologies™, Inc.