From: Marshall Barton on
Avid Fan wrote:

>I noticed that this query shows records the records between even if the
>second date is larger than the first.
>
>No big deal really I just was not expecting it.
>
>I suppose you have to code around it in case somebody makes a mistake.
>

Between doesn't care which one is earlier. If it matters to
you, don't use Between. Instead use something like:

datefield >= startdate And datefield <= enddate

--
Marsh
MVP [MS Access]