This article describes how to create a command button on a filtered form that,
when clicked, opens a report and applies the filter that is on the form to the
report.
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Â
(http://kbalertz.com/Feedback.aspx?kbNumber=231851/EN-US/
)
Microsoft Access 2000 Sample Reports Available in Download Center
This example uses the sample database Northwind.mdb. The technique involves
creating a new form and a new report. The form uses event procedures to apply a filter and to open the new report. The report uses the
Filter property to apply the same filter that is used in the form.
- 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 AutoReport: Tabular, select Customers from the Choose the table or query where the object's data comes from list, and click OK.
- Close and save the report as rptCustomers.
- In the Database window, click Forms under Objects, and then click New.
- In the New Report dialog box, click AutoForm: Tabular, select Customers from the Choose the table or query where the object's data comes from list, and click OK.
- Close and save the form as frmFilterForm.
- Open frmFilterForm in Design view.
- Increase the size of the form footer section so that it can hold three command buttons.
- Create a command button in the form footer and set its properties as follows:
Name: cmdOpenReport
Caption: Open Report
OnClick: [Event Procedure]
- Set the OnClick property of the command button to the following event procedure:
Private Sub cmdOpenReport_Click()
If Me.Filter = "" Then
MsgBox "Apply a filter to the form first."
Else
DoCmd.OpenReport "rptCustomers", acViewPreview, , Me.Filter
End If
End Sub
- Create a second command button in the form footer and set its properties as follows:
Name: cmdClearFilter
Caption: Clear Filter
OnClick: [Event Procedure]
- Set the OnClick property of the second command button to the following event procedure:
Private Sub cmdClearFilter_Click()
Me.Filter = ""
End Sub
- Create a third command button in the form footer and set its properties as follows:
Name: cmdClose
Caption: Close
OnClick: [Event Procedure]
- Set the OnClick property of the third command button to the following event procedure:
Private Sub cmdClose_Click()
DoCmd.Close acForm, Me.Form.Name
End Sub
- Set the following properties for the frmFilterForm form:
OnOpen: [Event Procedure]
OnClose: [Event Procedure]
- Set the OnOpen property of the form to the following event procedure:
Private Sub Form_Open(Cancel as Integer)
Me.Filter = ""
End Sub
- Set the OnClose property of the form to the following event procedure:
Private Sub Form_Close()
DoCmd.Close acReport, "rptCustomers"
End Sub
- Switch the form to Form view.
- On the toolbar, click the Filter By Form button to set a filter, and then click the Apply Filter button to apply the filter.
- Click the Open Report button on the form. A report should appear with the same filter that was applied to the form.
For more information about the Filter property, click
Microsoft Access Help on the
Help menu, type
Filter Property in the Office Assistant or
the Answer Wizard, and then click
Search to view the topics
returned.
For more information about Filter By Form, click
Microsoft Access Help on the
Help menu, type
Modify a filter in the Filter By Form window in a table, query, or form in the Office Assistant or
the Answer Wizard, and then click
Search to view the topics
returned.
For more information about Filter By Selection, click
Microsoft Access Help on the
Help menu, type
Filter records by selecting values in a form or datasheet in the Office Assistant or
the Answer Wizard, and then click
Search to view the topics
returned.