Link to home
Start Free TrialLog in
Avatar of James Foxworthy
James FoxworthyFlag for United States of America

asked on

Unwanted "Enter Parameter Value" prompt

Hello,
Problem: I open a report and received an unwanted,  “Enter Parameter Value” prompt.

The below query is the RecordSource for a nested subReport.

The WHERE clause is referencing a text box (txtBookingsID) on the subreport that contains the subreport in question.

The reference to the text box is apparently correct in some sense, because after I click "OK" on the unwanted "Enter Parameter Value" prompt that pops up, my report opens and the data is all correct and could only be correct if the text box is referenced and the values read by the query. I don’t enter a value in the pop up “Enter Parameter Value” prompt, I just click on OK.

Can you help me figure out how to get rid of the prompt?

SELECT Equipment.Equipment_Description, Booking_Equipment.Bookings_ID

FROM Booking_Equipment INNER JOIN Equipment ON Booking_Equipment.Equipment_ID = Equipment.Equipment_ID

WHERE
Booking_Equipment.Bookings_ID = Reports!rpt_Booking_Sheet_All.Report!rpt­_Booking_Sheet_All_SubRpt_Container.Report!rpt_Booking_Sheet_All_SupRpt.Report!txtBookingsID;

Open in new window


Thank you!
Riverwalk
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

open report in design view

check the sorting or grouping that was set for the report..

also check the Filter property of the report from the Report's Properties window

what version of access are you using?

better if you can upload a copy of the db.
ASKER CERTIFIED SOLUTION
Avatar of mbizup
mbizup
Flag of Kazakhstan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of James Foxworthy

ASKER

mbizup -- using Master-Child links did the trick. Thank you very much.

Thank you too capricorn1, I check you points, and just so happens that those were not issues.

Wow! I R E A L L Y appreciate the help. I've been struggling with this for hours.

Thank you,
Riverwalk
Riverwalk -

Glad to help out.  If I'm not mistaken, the reason for your parameter prompt is that the subreport is not fully loaded at the time the parent report first needs that reference (or vice-versa).  Master-child links implicitly handle that timing for you so you don't get the prompt.