ACCESS 2000, WINXP
I have a query to print a report using ACCESS 2000. The query requires the user to enter two dates, and I would like to print those dates as part of the report. Is there a way to do it? Following is the query:
PARAMETERS [Enter Start FY] date,[Enter End FY] date;
SELECT Tax, Count(*) AS Total
FROM tblTRacking
WHERE (ClosedDate>=[Enter Start FY] and ClosedDate <= [Enter End FY])
GROUP BY Tax;
The query runs fine. All I need to know is how to access the two parameters in the Report. Thank for your help.
I have a query to print a report using ACCESS 2000. The query requires the user to enter two dates, and I would like to print those dates as part of the report. Is there a way to do it? Following is the query:
PARAMETERS [Enter Start FY] date,[Enter End FY] date;
SELECT Tax, Count(*) AS Total
FROM tblTRacking
WHERE (ClosedDate>=[Enter Start FY] and ClosedDate <= [Enter End FY])
GROUP BY Tax;
The query runs fine. All I need to know is how to access the two parameters in the Report. Thank for your help.