CR 8.5 and Oracle
I have a report that pulls in all parts, one part per page and then lists each delivery
line so Group1 = part and Group2 = delivery date. I need to exclude the page completely if no
delivery date is within 90 days, else include all delivery dates. I already have subreports for
other reasons at the detail level so I cannot use a subreport to get around this. The report is
large so I'd really like to exclude the data during selection but cannot figure out how.
(I have never used Group selection, only Record.)
I have set variables - (all WhilePrintingRecords)
reset_count_within := 0 - in page header
within := If delivery date <= today +90 then 1 - in detail
count_within := count_within + @within - in page footer
These all display as I expect. However, when I try and use these to format every section as
"suppress when count_within <1" everything is perfect except I cannot avoid printing Group1 HeaderA
which is just the text that appears at the top of each page for those pages that should be suppressed.
(Group1 HeaderA is text, HeaderB is the part #, description, etc.)
What am I missing or is there a better way? Thanks.
I have a report that pulls in all parts, one part per page and then lists each delivery
line so Group1 = part and Group2 = delivery date. I need to exclude the page completely if no
delivery date is within 90 days, else include all delivery dates. I already have subreports for
other reasons at the detail level so I cannot use a subreport to get around this. The report is
large so I'd really like to exclude the data during selection but cannot figure out how.
(I have never used Group selection, only Record.)
I have set variables - (all WhilePrintingRecords)
reset_count_within := 0 - in page header
within := If delivery date <= today +90 then 1 - in detail
count_within := count_within + @within - in page footer
These all display as I expect. However, when I try and use these to format every section as
"suppress when count_within <1" everything is perfect except I cannot avoid printing Group1 HeaderA
which is just the text that appears at the top of each page for those pages that should be suppressed.
(Group1 HeaderA is text, HeaderB is the part #, description, etc.)
What am I missing or is there a better way? Thanks.