-----Original Message-----
Hi Rawley
congrats
however, AFAIK to achieve what you want to achieve you will need to use a
form to specify the start & end date criteria
to do this create a form (call it ReportDateRange for example) with two
unbound text boxes (and name the text boxes something like RPTSDATE and
RPTEDATE) then, go back to the query and change the criteria to
Forms![ReportDateRange].RPTSDATE and Forms! [ReportDateRange].RPTEDATE
respectively (use the expression builder to get the exact syntax).
now put a button on this form - use the command button wizard, choose Report
Operations - Preview a Report (or whatever the exact wording is) - select
the appropriate report
then in design view of the report add a text box in in the control source of
the text box add the following
="Report Dates From: " & [forms]![ReportDateRange]! [RPTSDATE] & " To " &
[forms]![ReportDateRange]![RPTEDATE]
and this should give you what you want.
Let us know how you go.
Cheers
JulieD
I've made my first report in Access...woohoo! My
report is based-on a
query, and when you run the report, it asks for a date range (Starting Date,
Ending Date). Now, is there a way that I can insert these date criteria
fields into the report (so that it shows 1-1-03 to 12-31- 03)? I've been
trying to insert bound and unbound objects with no success. Any help would
be appreciated!
.