I created a formula field with
whilePrintingRecords;
global stringvar showText
The variabel will be set to "1" for a certain criteria.
In a another section, with the formula field with the text to show, I have marked Suppress and a condition
whilePrintingRecords;
global stringVar showText;
if showText="1" then
true
else
false;
My problem is that if the report will be more than one page and the second formula field is on page 2 then variabel is changed to "0". Why? What do do?
whilePrintingRecords;
global stringvar showText
The variabel will be set to "1" for a certain criteria.
In a another section, with the formula field with the text to show, I have marked Suppress and a condition
whilePrintingRecords;
global stringVar showText;
if showText="1" then
true
else
false;
My problem is that if the report will be more than one page and the second formula field is on page 2 then variabel is changed to "0". Why? What do do?