Putting records filtered on a form into a report.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some forms were the users are able to use a filter-by-selection,sort
either by AZ-ZA. The users then want to see the results in the report exactly
as they are on the form after the filtering and sorting is done. Any idea on
how to accomplish this?

TIA
-Craig
 
The form filter can be passed to the Report as in the following code...

DoCmd.OpenReport "Report1", acViewNormal, , Form_Form1.Filter

Regards,

Matt
 
Back
Top