This will be due to the fact that your fields have a time component stored
there.
If you ask for dates between July 1 2006 and July 2 2006, the records that
contain July 2 10AM will not be returned, because that is after midnight on
the closing date.
To work around the problem, ask for records that are less than the next day,
i.e.:
= [StartDate] AND < ([EndDate] + 1)
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
TSpade said:
Hello - using parameter query with Between [StartDate] And [EndDate] to
query
an order table. Orders with dates equal to the [EndDate] do not appear in
results.