Jump to content

Seq Numbering with an addition...


ReneTamol

Recommended Posts

Posted

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

Posted

Make a rule for that "different Text Frame" like so:

if (CurrentRecordNumber() > 2000 && CurrentRecordNumber() < 2111)
    return "void";
else
    return "something else here";

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...