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?

Comments

  • edited 4:27PM
    "RowCount=6" in FR is used for show only 6 records not for print 6 records each page.

    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.
  • edited 4:27PM
    I'll try this... thanks

Leave a Comment