The information in this article applies to:
- Microsoft Visual FoxPro for Windows, version 3.0
- Microsoft FoxPro for Windows, versions 2.5, 2.5a, 2.5b, 2.6, and 2.6a
- Microsoft FoxPro for MS-DOS, versions 2.5, 2.5a, 2.5b, 2.6, and 2.6a
- Microsoft FoxPro for Macintosh, version 2.5b, 2.6, and 2.6a
In the FoxPro Report Writer, you can create a data grouping that will break
after a certain number of records.
For example, the following procedure will create a data grouping that
breaks after every fifth record.
- Create a quick report based on the CUSTOMER database in the TUTORIAL
subdirectory.
- From the Report menu, choose Variables.
- Choose Add to add a variable.
- For the variable name, type "cntr" (without the quotation marks).
- For the value to store, type "Customer.state" (without the quotation
marks).
- Select the Count radio button in the Calculate box and choose OK
twice to return to the report.
- From the Report menu, choose Data Grouping.
- Choose Add to add a Data Grouping.
- Enter the following expression to group on:
INT(cntr/5)
- Select OK twice to return to the report. You can now place fields and
text in the group header and footer, which will print every fifth
record.
|