J
Joyce
I have a report that I want to be able to generate with a
start and end date. How would I do this. Thank you.
start and end date. How would I do this. Thank you.
I have a report that I want to be able to generate with a
start and end date. How would I do this. Thank you.
Steve Schapel said:Joyce,
As Fred mentioned, there are various approaches. Another option,
similar to Fred's suggestion but perhaps more user-friendly, is to put
two unbound textboxes on a form, where you enter the start date and
end date criteria, and then in your criteria in the query, refer to
these controls using syntax such as...
Between [Forms]![NameOfForm]![StartDate] And
[Forms]![NameOfForm]![EndDate]
- Steve Schapel, Microsoft Access MVP
There are several ways.
One is to base the report upon a query.
As query criteria in the Date field write:
Between [Enter Start Date] AND [Enter End Date]
Run the report. You will be prompted to enter the dates.
to print on the report so now I'm using a form to capture-----Original Message-----
I have a report that I want to be able to generate with a
start and end date. How would I do this. Thank you.
There are several ways.
One is to base the report upon a query.
As query criteria in the Date field write:
Between [Enter Start Date] AND [Enter End Date]
Run the report. You will be prompted to enter the dates.
--
Fred
Please reply only to this newsgroup.
I do not reply to personal e-mail.
.
I tried using a query, but then I could not get the dates
to print on the report so now I'm using a form to capture-----Original Message-----
I have a report that I want to be able to generate with a
start and end date. How would I do this. Thank you.
There are several ways.
One is to base the report upon a query.
As query criteria in the Date field write:
Between [Enter Start Date] AND [Enter End Date]
Run the report. You will be prompted to enter the dates.
--
Fred
Please reply only to this newsgroup.
I do not reply to personal e-mail.
.
I tried using a query, but then I could not get the dates
the date ranges. Now those dates appear on the report,
but the report is bring back inaccurate information. The
roport is not reading the search criteria. Any help you
can give me with that would be appriciated. Thank you.