Hi
Below code is in Page Header Suppress confition . It is giving error on CurrPage value
whileprintingrecords;
booleanvar i;
numbervar CurrentPage = CurrPage;
if (i := true and pagenumber > CurrentPage) then true else false
Below Formula is in Details section :-
whileprintingrecords;
booleanvar i;
Global numbervar CurrPage;
if {#RTotal0} = {Command.No of Records} then
(
CurrPage := PageNumber;
i:=true;
)
Thanks