Hello,
I am having a problem using a stringvar on a report I am working on. Here's what I have for formulas:
@reset located in page header on main report
WhilePrintingRecords;
shared stringvar X := " ";
@declare located in group header (borrower) on subreport
WhilePrintingRecords;
Shared stringVar X;
X := X + {table.field} + chr(10) + chr(13) + chr(10) + chr(13);
@display located in page footer on main report
WhilePrintingRecords;
Shared stringVar X := X;
The subreport is located in a group header which and I am using underlay to fill out a template in the page header. The report is set to have 3 borrowers per page.
The problem I have is when there are > 3 borrowers and then @display shows only on the last page. I would like it to show for whatever borrower is on the page you happen to be looking at (basically 3 per page).
Thank you.
I am having a problem using a stringvar on a report I am working on. Here's what I have for formulas:
@reset located in page header on main report
WhilePrintingRecords;
shared stringvar X := " ";
@declare located in group header (borrower) on subreport
WhilePrintingRecords;
Shared stringVar X;
X := X + {table.field} + chr(10) + chr(13) + chr(10) + chr(13);
@display located in page footer on main report
WhilePrintingRecords;
Shared stringVar X := X;
The subreport is located in a group header which and I am using underlay to fill out a template in the page header. The report is set to have 3 borrowers per page.
The problem I have is when there are > 3 borrowers and then @display shows only on the last page. I would like it to show for whatever borrower is on the page you happen to be looking at (basically 3 per page).
Thank you.