ChrisMondo Posted August 24, 2017 Share Posted August 24, 2017 Hi all, Customer supplied me with a 3000 page pdf (all pages are unique) They are requesting that a code be added to every other page (1, 3, 5, etc) They have supplied a data file that includes those codes. Is there an easy way to accomplish this? Any insight would be greatly appreciated. Thanks Chris Quote Link to comment Share on other sites More sharing options...
GreggRusson Posted August 24, 2017 Share Posted August 24, 2017 Try using this in a rule: if (CurrentRecordNumber()% 2 == 1) return CurrentRecordNumber(); return NullResource(); If the current page/record number is 1, 3, 5, 7 etc, the rule will return that number... Quote Link to comment Share on other sites More sharing options...
ChrisMondo Posted August 25, 2017 Author Share Posted August 25, 2017 Thanks Gregg but all this is doing is returning the first page of the supplied pdf with a different number based on the record. Kinda of like a sequential number scenario. Perhaps I am using it wrong. Quote Link to comment Share on other sites More sharing options...
Dan Korn Posted August 28, 2017 Share Posted August 28, 2017 (edited) Use the Inserting Multi-page PDF variable graphics approach. Then set up the Overflow Options to use different Left (even) and Right (odd) Overflow pages, and put a frame with the page number only on the Right (odd) page. Edited August 28, 2017 by Dan Korn mixed up left and right 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.