Hi
You could ask users for a start date and end date by adding a parameter
prompt to the query.
Add this to the criteria row of the column containing the start and end dates
[Enter start date] [Enter end date]
Then add an unbound textbox to the header of the report with this as the
control source.
="Accounts from " & (Format([StartDate],"ddd dd mmmm yyyy")) & " to " &
(Format([EndDate],"ddd dd mmmm yyyy"))
Of course change the [StartDate] and [EndDate] to what they really are in
your application.
Hope this helps
--
Wayne
Manchester, England.
nabs said:
I need to get weekly reports from an accounts databasefrom access 2003how do
I get dates >=and date<= I want to be able to apply this in the report header.
thanks anyone