ACC2000: How to Print a 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 INFORMATIONCAUTION: 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:
- Open the sample database Northwind.mdb.
- In the Database Window, click Reports under Objects, and then click New.
- In the New Report dialog box, click Report Wizard, select the Employees Table, and then click OK.
- 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.
- Select BirthDate as the primary group level, click the > button, and then click Next.
- Select LastName as the field to establish sort order in Field 1, and
then click Next.
- On the How would you like to lay out your report? screen, click Next.
- On the What style would you like? screen, click Next.
- On the What title would you like for your report? screen, type
Employee Birthdays, and then click Finish.
- View the new report in Design view.
- On the View menu, click Code.
- Type the following lines in the module's Declarations section:
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
- In the Object box of the code module, select Report. In the Procedure box of the code module, select Open. Type the following procedure:
Private Sub Report_Open (Cancel As Integer)
'This code initializes the cLines variable to zero.
cLines = 0
End Sub
- In the Object box, select Detail. The Procedure box will change to Format. Type the following procedure:
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
- Close the module, and then preview the report. Note that there is a
blank line in the report after every five lines of detail.
REFERENCESFor 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
|