IMPORTANT ANNOUNCEMENT

These forums were permanently set to read-only mode on July 20, 2022. From that day onwards, no new posting or comment is allowed on the site, but the historical content remains intact and searchable.

A new location for posting questions about PlanetPress Suite is now available:

OL Learn - PlanetPress Classic (opens in new tab)

Topic Options
#51944 - 07/01/15 06:11 AM Repeated Layouts Question (PSM 7.2.4)
mailshop Offline
OL Newbie

Registered: 07/30/13
Posts: 2
Hi all,

I can't find this anywhere so hopefully it hasn't been asked before.

We print mostly N-up and for quality control reasons need to flag each layout in some way (so e.g. if printing A4 portrait 2-up onto A3 we might mark the left layout with an 'L' and the right with 'R' to allow us to differentiate them). At the moment i'm doing this in the data by applying an 'L' or 'R' to alternating records BUT the problem with this is that which side it's printed on depends on which record we start printing at (so if we start at record 1 it prints 'L' on the left as expected but if we start at record 2 the left-hand layout will print with an 'R', which clearly isn't what we're after).

Is there some way to get PrintShop Mail to print a flag or similar on the layouts independently of the data so that it always correctly marks e.g. the left hand layout with an 'L' (or other marking) and the right-hand layout with an 'R' ? Or perhaps some entirely different way of achieving what we're after ?


Thanks in advance for any help,


Ewan

Top
#52631 - 10/30/15 11:15 AM Re: Repeated Layouts Question (PSM 7.2.4) [Re: mailshop]
SanderO Offline
OL Newbie

Registered: 03/25/13
Posts: 12
Use something like :
if( MOD(RECORD_NR(),2)=1,"L","R")

Top