Hi
I have below formula in Detail Section . It is showing CurrPage Value = 3.00
whileprintingrecords;
booleanvar i;
global numbervar CurrPage;
if (CurrPage=3.00 and i = true and pagenumber<>1) then true else false;
I want to suppress Page Section if condition is true but it is not suppressing
Thanks
Lokesh VarmanPosted Sep 15, 2023, 11:49 AM
whileprintingrecords;
booleanvar i;
global numbervar CurrPage;
if (CurrPage=3.00 and i = true and pagenumber<>1) then
true
else
false;
This formula should work if the conditions are met. Make sure that:
ivariable is being set totruesomewhere else in your report.CurrPagevariable is being set to3.00correctly.