Hi ASA-Ray,
As Raphael mentioned, you will need a Global variable of type Boolean to achieve that. Let's call it: &bChargeFound. In the presstalk before your first page, create an if statement that will toggle or not your variable by looking for CHARGE on
the 1st datapage only . Then, use that variable in the condition field of the Basic Attributes of the 3rd page.
Here is an example where CHARGE would be located anywhere on the 1st line.
(Presstalk before the 1st page)
&bChargeFound:=false
if((pos('CHARGE',uppercase(@(1,1,150)))>0) and (¤t.datapage=1))
&bChargeFound:=true
endif()
(Expression in the condition field of page 3)
=&bChargeFound
Please open a support call if you need further assistance. Thanks.
Regards,
Olivier