Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

ACC2000: Keeping Subreport or Text Box Data Together on a Page


View products that this article applies to.

Summary

Subreports and text box controls do not have a KeepTogether property to prevent the controls' data from printing across two or more pages. However, you can simulate the KeepTogether property behavior by creating "artificial" group sections and placing the subreport and text box controls in these sections. Then, you can set the group's KeepTogether property to Yes, which causes Microsoft Access to test the layout of the controls before printing them and to keep the text together on one page.

NOTE: This article explains a technique demonstrated in the sample file, RptSmp00.mdb. For information about how to obtain this sample file, please see the following article in the Microsoft Knowledge Base:
231851 ACC2000: Microsoft Access 2000 Sample Reports Available in Download Center

↑ Back to the top


More information

The following steps use the sample database Northwind.mdb to demonstrate how you can use report sections to simulate a KeepTogether property for subreport and text box controls.

Creating a Subreport

  1. Open the sample database Northwind.mdb or Access project NorthwindCS.adp.
  2. Run the Report Wizard to create a report based on the Products table.
  3. In the Which Fields do you want on your report? screen, add the following fields to the Selected Fields list:
    ProductName
    QuantityPerUnit
    UnitPrice
  4. Click Finish.
  5. Close the report.
  6. In the Database window, right-click the Products report, and then click Rename on the menu that appears. Type the following name for the report, and then press ENTER:
    srptProducts

Creating a Main Report

  1. Run the Report Wizard to create a report based on the Categories table.
  2. In the Which Fields do you want on your report? screen, add all of the fields to the Selected Fields list.
  3. Click Finish.
  4. Close the report.
  5. In the Database window, right-click the Categories report, and then click Rename on the menu that appears. Type the following name for the report, and then press ENTER:
    rptCategories
  6. Open the rptCategories report in Design View.
  7. On the View menu, click Sorting and Grouping.
  8. Under the Field/Expression list, select CategoryID in the first row and type the following expression in the second row (below CategoryID):
    =1
  9. For the "=1" expression, select "Yes" in the GroupFooter property.

Adding the Subreport to the Main Report

  1. Drag the srptProducts report from the Database window to the "=1" group footer to create the subreport container.
  2. Change the following subreport control properties:
    Name: Products
    ControlSource: Report.srptProducts
    LinkChildFields: CategoryID
    LinkMasterFields: CategoryID
    CanGrow: Yes
    Left: 0
    Top: 0
    Width: 7
    Height: .25
  3. Select the "=1" group footer and set its properties as follows:
    KeepTogether: Yes
    CanGrow: Yes
    Height: .25
  4. Preview the rptCategories report. Note that the subreport data is printed on one page, rather than across two or more pages.

Additional Notes

  • Creating an "artificial" group (as demonstrated in this article) works well for subreport controls, as well as for text box controls bound to Memo fields. When Memo fields are printing, there are no events triggered until the Memo field is finished. Therefore, you cannot tell if the Memo field will split data between two pages. By placing the Memo field in its own "artificial" group, the group's KeepTogether property will test the layout of the Memo field before printing and keep the text together on one page when printing.
  • If your subreport or text box does not grow, you can size the subreport control in the main report to be the same size as the subreport itself. Then, set the KeepTogether property of the subreport's section on the main report to No. When you print the report, Microsoft Access will not generate a page break in the middle of a control.
  • If your subreport or text box does grow, you should place the control into its own section and set the KeepTogether property for the subreport's section in the main report to Yes.

↑ Back to the top


Keywords: KB208541, kbhowto

↑ Back to the top

Article Info
Article ID : 208541
Revision : 2
Created on : 6/28/2004
Published on : 6/28/2004
Exists online : False
Views : 358