Filter by Form and Reports

J

John

How do I attach a report to a recordset created by a 'filter by Form'?

Thanks in anticipation
 
F

fredg

How do I attach a report to a recordset created by a 'filter by Form'?

Thanks in anticipation

Create your normal report.
Then, add a command button to your form.
Code it's Click event:

DoCmd.OpenReport "ReportName", acViewPreview, , Me.Filter
 
Top