On Mon, 10 Nov 2008 07:52:05 -0800, Larry <(E-Mail Removed)>
wrote:
>I have a simple time tracking database that I am creating. I have a table
>tblPayPeriod that just has two columns in it - StartDate and EndDate.
>
>I want to create criteria in the query that will only pull data from between
>the two dates, so I have tried to add this to the criteria:
>
>Between [Tables]![tblPayPeriod].[StartDate] And
>[Tables]![tblPayPeriod].[EndDate]
>
>But it is not working, HELP!
If you want to find all records for a particular date, use
>= [Enter date:]
as a criterion on StartDate, and
<= [Enter date:]
as a criterion on EndDate.
--
John W. Vinson [MVP]
|