Is it possible to display the date range entered on report?

ml8889

Registered User.
Local time
Today, 18:00
Joined
Oct 12, 2012
Messages
19
I have a report that is based on a query where the criterium of the date field is: Between [Enter Begin Date] And [Enter End Date]. Is it possible for my report to display the two dates entered by the user?
 
You can include the two date parameters ([Enter Begin Date], [Enter End Date]) in the SELECT clause of the query, that way they would be available as fields for the report.

Another way is to use an unbound form to enter the dates and then have the report run from a button on the form. You would have to replace your current date parameters in the query with reference to the form controls. You could also reference the form controls in the report.
 

Users who are viewing this thread

Back
Top Bottom