I have searched through the forums for help and I have come very close.
per lbass's Instruction, I have made the following renditions to the report in hopes it would work.
//{@reset} for the subreport report header:
whileprintingrecords;
shared stringvar x := "";
//{@accum} for the detail section:
whileprintingrecords;
shared stringvar x;
if isnull({table.linkfield}) then //Use the field that you are using to
//link to the main report
x := x + "" else
x := x + "Not Null";
//{@display} for the subreport report footer:
whileprintingrecords;
shared stringvar x;
Suppress these formulas if you wish.
Then in the main report go to the section expert->detail_c->suppress->x+2 and enter:
whileprintingrecords;
shared stringvar x;
x = ""; //note no colon
The only problem is there are multiple subreport records under each entry so it only suppresses the section if there is no record period. I need a way to suppress all but applicable records based on a two and four digit number field. I am fairly new to CR so if the verbiage is off or more specifics are needed I will be happy to comply. Someone Please Help!!!!
Thanks,
Russell
per lbass's Instruction, I have made the following renditions to the report in hopes it would work.
//{@reset} for the subreport report header:
whileprintingrecords;
shared stringvar x := "";
//{@accum} for the detail section:
whileprintingrecords;
shared stringvar x;
if isnull({table.linkfield}) then //Use the field that you are using to
//link to the main report
x := x + "" else
x := x + "Not Null";
//{@display} for the subreport report footer:
whileprintingrecords;
shared stringvar x;
Suppress these formulas if you wish.
Then in the main report go to the section expert->detail_c->suppress->x+2 and enter:
whileprintingrecords;
shared stringvar x;
x = ""; //note no colon
The only problem is there are multiple subreport records under each entry so it only suppresses the section if there is no record period. I need a way to suppress all but applicable records based on a two and four digit number field. I am fairly new to CR so if the verbiage is off or more specifics are needed I will be happy to comply. Someone Please Help!!!!
Thanks,
Russell