Avatar of LarsDyrby
LarsDyrby
 asked on

Passing criteria into a report from a form

I have a query (qry_report1) and a report (rpt_report1) that requires 2 inputs from the user - StartDate and EndDate. I have set up a form (frm_report) with 2 txt fields with datepickers where the user can set the dates. I have made a command button calling the report using DoCmd.OpenReport.

When I open frm_report and set the dates and press the button the setup works, but when I embed the frm_report in a navigationalform (frm_menu) and run it from here it doesn't work anymore. Instead I keep getting the enter parameter value dialogue box.

Whats the problem?
Microsoft Access

Avatar of undefined
Last Comment
omgang

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Dale Fye

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
omgang

How/where do you specify the values for the form fields?  In the query or the report itself, e.g. [Forms]![frm-report]![txtField1] ?  If so, then once you embed the form in another for the reference will no longer work.  You'll need to refer to the parent form and then drill down.

OM Gang
Rey Obrero (Capricorn1)

the criteria in your query "qry_report1" is still looking for the form "frm_report" which now became a sub form when you placed it in "frm_Menu"..


1. remove the date criteria from your query

2. open the report like this

docmd.openreport "rpt_report1",,, "[datefrom]>=#" & me.textdate1 & "# and [dateTo]<=#" & me.textdate2 & "#"

that is the format you  should use...



post the criteria from query  "qry_report1", so we can correct the code above



.
omgang

If you want to refer to the original form, which is now a subform of another form, you can refer to it in this way
Forms!frm_menu.form!frm_report!txtField1

OM Gang
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23