Hey guys,
I created a label report that runs a query. The query asks the user to enter in a date, and then it pulls all the records with that matching date field.
Now they want the user to be able to put in a beginning date and ending date, and the query retrieve all the records in between those dates.
It sounds easy, but I can't find a way to do this. My SQL view of the query looks like this:
I want to prompt them for begin date and then end date.
Thanks.
I created a label report that runs a query. The query asks the user to enter in a date, and then it pulls all the records with that matching date field.
Now they want the user to be able to put in a beginning date and ending date, and the query retrieve all the records in between those dates.
It sounds easy, but I can't find a way to do this. My SQL view of the query looks like this:
Code:
SELECT Main.title, Main.First_name AS [First], Main.Middle_name, Main.Last_name AS [Last], Main.Address1, Main.Address2, Main.City, Main.State, Main.Zip, Main.Pos_num, Main.Date_receipt
FROM
Main
WHERE (((Main.Pos_num)=[What is the position number?]) AND ((Main.Date_receipt)=[What is the date? Example - 03/31/2010]));
I want to prompt them for begin date and then end date.
Thanks.