ACC2000: Print Blank Line Every Nth Line in a Report

ID: Q208696


The information in this article applies to:

Moderate: Requires basic macro, coding, and interoperability skills.

This article applies to a Microsoft Access database (.mdb) and a Microsoft Access project (.adp).


SUMMARY

This article shows you how to add blank lines between the printed lines on a report. You can use this method to add a blank line after a set number of lines. For example, you could use this method to add a blank line after every five lines of data in your report.


MORE INFORMATION

CAUTION: Following the steps in this example will modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and perform these steps on a copy of the database.

To add a blank line after every five lines in a report, follow these steps:

  1. Open the sample database Northwind.mdb.


  2. In the Database Window, click Reports under Objects, and then click New.


  3. In the New Report dialog box, click Report Wizard, select the Employees Table, and then click OK.


  4. In the Available Fields box, select EmployeeID, and then click the > button. Repeat this step for the LastName, FirstName, and BirthDate fields, and then click Next.


  5. Select BirthDate as the primary group level, click the > button, and then click Next.


  6. Select LastName as the field to establish sort order in Field 1, and then click Next.


  7. On the How would you like to lay out your report? screen, click Next.


  8. On the What style would you like? screen, click Next.


  9. On the What title would you like for your report? screen, type Employee Birthdays, and then click Finish.


  10. View the new report in Design view.


  11. On the View menu, click Code.


  12. Type the following lines in the module's Declarations section:


  13. 
    Option Compare Database
    Option Explicit
    ' This code declares the cLines variable as an integer, and the
    ' cMaxLine constant as five. You can set the cMaxLine constant
    ' to insert a blank line after as many lines as you want. For
    ' example, to add a blank line after every eight lines in the
    ' report, set cMaxLine=8.
    Dim cLines As Integer
    Const cMaxLine=5 
  14. In the Object box of the code module, select Report. In the Procedure box of the code module, select Open. Type the following procedure:


  15. 
    Private Sub Report_Open (Cancel As Integer)
       'This code initializes the cLines variable to zero.
       cLines = 0
    End Sub 
  16. In the Object box, select Detail. The Procedure box will change to Format. Type the following procedure:


  17. 
    Private Sub Detail_Format (Cancel As Integer, FormatCount As _
                  Integer)
       ' This code adds a blank line by setting the NextRecord and
       ' PrintSection properties.
       If cLines Mod (cMaxLine+1) = 0 Then
          Me.NextRecord = False
          Me.PrintSection = False
       End If
       cLines = cLines + 1
    End Sub 
  18. Close the module, and then preview the report. Note that there is a blank line in the report after every five lines of detail.



REFERENCES

For more information about the NextRecord property, click Microsoft Access Help on the Help menu, type "NextRecord property" in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.

For more information about the PrintSection property, click Microsoft Access Help on the Help menu, type "PrintSection property" in the Office Assistant or the Answer Wizard, and then click Search to view the topics returned.

Additional query words:


Keywords          : kbdta RptLayou 
Version           : WINDOWS:2000
Platform          : WINDOWS 
Issue type        : kbhowto 

Last Reviewed: June 10, 1999