MrDeveloper
Programmer
Hi,
I have a query-based report that prompts a user to enter in a start date that falls between two dates. Works as intended with the records between those dates being displayed.
What the client now wants is the heading of the report to show the dates entered in at the prompts when the report starts.
E.g.
Prompt: (Please enter in) Start Date 1: 01/01/02
Prompt: (Please enter in) Start Date 2: 01/01/04
-------------REPORT----------------------
Management Report
Date Run: 16/01/05
Title: All records with a Start Date between 01/01/02 and 01/01/04
----Record1---
----Record2---
----Record3--- etc.
-----------------------------------------
Can this be done, and if so do changes need to be made to the original query or the report?
Working query snippet currently in use:
SELECT Matches.ID, Matches.Activity, Matches.Start_Date, Matches.End_Date
FROM Matches
WHERE ((Matches.Start_Date) Between [Start date 1] And [Start date 2])
ORDER BY etc..
Any pointers much appreciated,
I have a query-based report that prompts a user to enter in a start date that falls between two dates. Works as intended with the records between those dates being displayed.
What the client now wants is the heading of the report to show the dates entered in at the prompts when the report starts.
E.g.
Prompt: (Please enter in) Start Date 1: 01/01/02
Prompt: (Please enter in) Start Date 2: 01/01/04
-------------REPORT----------------------
Management Report
Date Run: 16/01/05
Title: All records with a Start Date between 01/01/02 and 01/01/04
----Record1---
----Record2---
----Record3--- etc.
-----------------------------------------
Can this be done, and if so do changes need to be made to the original query or the report?
Working query snippet currently in use:
SELECT Matches.ID, Matches.Activity, Matches.Start_Date, Matches.End_Date
FROM Matches
WHERE ((Matches.Start_Date) Between [Start date 1] And [Start date 2])
ORDER BY etc..
Any pointers much appreciated,