Set Default Print
Margins
Tools | Options [General]
Create a Page
Break after Each Group
Add a page break in the
Group Footer
OR
1. Select the Group Footer
and open Properties [Format]
2. Set Force New Page
property to After Section
Display Parameter
Values in a Report
1. Create the parameter
query and include the
parameters as fields in
the QBE grid – use
exactly the same names
eg [Start Date] as a parameter,
would be something like
Start: [Start Date] as
a field
2. Create the report and
use the fields wherever
appropriate in the report,
eg form report title control
source may read:
="Customer Orders
between" & "
" & [Start Date]
& " " &
[End Date]
Open Report Based
on a Single Record Shown
in a Form
1. Create a report as
usual
2. Create a macro:
Action: Open Report
Report Name: Name of Report
Where condition: [fieldname]
= Forms![formname]![formcontrolname]
Fieldname is the unique
reference that identifies
the record
3. Drag the macro onto
the form
Empty Calculated
Fields
If some records show empty
calculated fields this
is because the calculated
field value is Null. To
covert Nulls to zeros
use the NZ() function.
eg =NZ([Price])*.2
Column Headings
in SubReports
Page headers and footers
will not print –
put headings in report
header.
If the subreport goes
over one page but headings
in a group header.
Calculations
in PageHeaders/Footers
Sum() does not work in
a Page Header, therefore
create the calculation
elsewhere, such as the
report footer and the
create a text box that
refers to that control
in the page footer =[ControlName] |