ReneTamol Posted April 15, 2013 Posted April 15, 2013 I need some help with a script.... I have a job that requires Seq Numbering and when a certain number appears, a different Text Frame needs to have the word "Void" in it. Here's my example... In one Text Frame I have the Seq Numbers, which are P1000 - P2110, but when P2001 - P2110 appear, I need the word "Void" to appear in another Text Frame. Any help would be greatly appreciated. Thanks, Rene
Dan Korn Posted April 15, 2013 Posted April 15, 2013 Make a rule for that "different Text Frame" like so: if (CurrentRecordNumber() > 2000 && CurrentRecordNumber() < 2111) return "void"; else return "something else here";
Recommended Posts
Archived
This topic is now archived and is closed to further replies.