Below I have a query that is the control source for my report. At the top of my report I would like to include the dates that were entered into the following query (Enter Start Date mm-dd-yy] AND [Enter End Date mm-dd-yy]). How can I get this to work where I can just take the inputed data from the query and place it in the text box on the report?
Thanks in advance,
Kacy
SELECT FACILITY.FAC_NAME, Count(*) AS Totals
FROM Archived INNER JOIN FACILITY ON Archived.FAC_ID = FACILITY.FAC_ID
WHERE (((Archived.APPT_DATE) BETWEEN [Enter Start Date mm-dd-yy] AND [Enter End Date mm-dd-yy]))
GROUP BY FACILITY.FAC_NAME;
________
FIX PS3
Thanks in advance,
Kacy
SELECT FACILITY.FAC_NAME, Count(*) AS Totals
FROM Archived INNER JOIN FACILITY ON Archived.FAC_ID = FACILITY.FAC_ID
WHERE (((Archived.APPT_DATE) BETWEEN [Enter Start Date mm-dd-yy] AND [Enter End Date mm-dd-yy]))
GROUP BY FACILITY.FAC_NAME;
________
FIX PS3
Last edited: