I have a report that is pulled from a parameter query (based on a date field). So the user clicks a Preview Report button on a switchboard form and then enters a report start date and a report end date. The parameter is as follows:
WHERE (((PO.Date)>=[Enter Report Start Date] And (PO.Date)<=[Enter Report End Date]));
I want the start date and end date the user enters to show at the top of my report.
For instance if the user enter a start date of 1/1/2007 and an end date of 10/31/2007, I want the report to show:
January 1, 2007 - October 31, 2007
Does anyone have any idea on how I can do this?
WHERE (((PO.Date)>=[Enter Report Start Date] And (PO.Date)<=[Enter Report End Date]));
I want the start date and end date the user enters to show at the top of my report.
For instance if the user enter a start date of 1/1/2007 and an end date of 10/31/2007, I want the report to show:
January 1, 2007 - October 31, 2007
Does anyone have any idea on how I can do this?