Hi,
I am using 8.5.
Here is what I need to do.
I have a report that has 11 lines per page.
If there is 11 details on the page everything works fine.
If I have less, I want to have blank lines inserted for each detail section that is blank.
I also need to start a new group on a new page.
I've tried this:
variable in page header:
whileprintingrecords;
global numbervar record_count := 0;
variable on detail line:
whileprintingrecords;
global numbervar record_count := 1 + record_count
I've tried conditionally suppressing my 10 detail sections with this formula:
whileprintingrecords;
global numbervar record_count <= 1 to 10 depending upon section
This doesn't work. When I get to the third detail I start getting my blank lines.
I need to have a variable that calculates by page that my details sections are conditionally suppressed upon.
I've also tried putting a variable in the page footer that states this:
whileprintingrecords;
global numbervar record_count;
global numbervar gt := record_count
Then I tried conditionally suppressing on gt instead of record_count.
This doesn't work either, since it never quite figures out what gt should be per page.
Any suggestions.
I am using 8.5.
Here is what I need to do.
I have a report that has 11 lines per page.
If there is 11 details on the page everything works fine.
If I have less, I want to have blank lines inserted for each detail section that is blank.
I also need to start a new group on a new page.
I've tried this:
variable in page header:
whileprintingrecords;
global numbervar record_count := 0;
variable on detail line:
whileprintingrecords;
global numbervar record_count := 1 + record_count
I've tried conditionally suppressing my 10 detail sections with this formula:
whileprintingrecords;
global numbervar record_count <= 1 to 10 depending upon section
This doesn't work. When I get to the third detail I start getting my blank lines.
I need to have a variable that calculates by page that my details sections are conditionally suppressed upon.
I've also tried putting a variable in the page footer that states this:
whileprintingrecords;
global numbervar record_count;
global numbervar gt := record_count
Then I tried conditionally suppressing on gt instead of record_count.
This doesn't work either, since it never quite figures out what gt should be per page.
Any suggestions.