I am having a problem printing total in group header.
I am using CR 9 and having a problem suprressing group header based on conditional count.
Group header: Client, Client Name....
Detail: will print only if condition is met. (using suppress)
all counter/formula are are working ok, with the exception of how to display the record count in group header (it works in group footer)
I am using the following:
//@CountReset
//Placed in report footer and group footer
WhilePrintingRecords;
Numbervar ncount:=0;
//@CountRec
// placed in detail section
Whileprintingrecords;
numbervar ncount;
if {@F compare}=0 then
ncount:=ncount+1
//@CountDisplay
//to print the contents
//(working ok - placed in group footer//
//*** need to place it in Group Header
Whileprintingrecords;
numbervar ncount;
ncount
Please advice
Thank you
d
I am using CR 9 and having a problem suprressing group header based on conditional count.
Group header: Client, Client Name....
Detail: will print only if condition is met. (using suppress)
all counter/formula are are working ok, with the exception of how to display the record count in group header (it works in group footer)
I am using the following:
//@CountReset
//Placed in report footer and group footer
WhilePrintingRecords;
Numbervar ncount:=0;
//@CountRec
// placed in detail section
Whileprintingrecords;
numbervar ncount;
if {@F compare}=0 then
ncount:=ncount+1
//@CountDisplay
//to print the contents
//(working ok - placed in group footer//
//*** need to place it in Group Header
Whileprintingrecords;
numbervar ncount;
ncount
Please advice
Thank you
d