Hi
I've created a nice report, which pulls its fields off a stored query (called TransactionQuery) which is created dynamically after a user searches (called Dynamic_Query). One simple example could be:
SELECT *
FROM TransactionQuery
WHERE (((TransactionQuery.[EntryDate]) Between #1/8/2011# And #8/31/2011#));
Although it'll usually be a little more complex than this. The results of this are displayed on a form, and they can then click a button and print out the results as a report.
The only 'problem' is that i would like to be able to display on the report - somewhere at the top - that this report is for all records "between 1/8/2011 and 8/31/2011".
How can i 'access' this date info and display it on my report?
Thank you!
I've created a nice report, which pulls its fields off a stored query (called TransactionQuery) which is created dynamically after a user searches (called Dynamic_Query). One simple example could be:
SELECT *
FROM TransactionQuery
WHERE (((TransactionQuery.[EntryDate]) Between #1/8/2011# And #8/31/2011#));
Although it'll usually be a little more complex than this. The results of this are displayed on a form, and they can then click a button and print out the results as a report.
The only 'problem' is that i would like to be able to display on the report - somewhere at the top - that this report is for all records "between 1/8/2011 and 8/31/2011".
How can i 'access' this date info and display it on my report?
Thank you!