where is my records
hi all;
in my report; there is a MASTERDATA and a SUBREPORT...
masterdata is a single row...
subreport have a dataset...
there is 30 records in my data but
i want to only 6 records every page
i set subreports masterdata.Row count = 6
but i can see only first page in report
what can i do?
in my report; there is a MASTERDATA and a SUBREPORT...
masterdata is a single row...
subreport have a dataset...
there is 30 records in my data but
i want to only 6 records every page
i set subreports masterdata.Row count = 6
but i can see only first page in report
what can i do?
Comments
To solve this problem yu can use [LINE] variable: if [LINE] MOD 6 =0 THEN "Start new page". Please refer to FR 3.0 Manual for details.