Dear Ryan (not Bryan):
Assuming you have a column which is date/time (I'll call it MyDateTime) you
can use a criterion that would read:
MyDateTime BETWEEN "12/12/2005" AND "12/19/2005"
Now, this will work well if there is no time recorded in the column. If
there are any rows where there is a time recorded, and if the date is
12/19/2005, then these rows will be excluded. Why? Because the date
12/19/2005 has an implied time component of 00:00:00. That is, it includes
only the first fraction of a second of the day 12/19/2005. Any date/time
values in the column that were entered without any time component will match
the 00:00:00 time and will be included.
This is a common problem with date/time data. One solution is to use a
different construction:
MyDateTime >= "12/12/2005" AND MyDateTime < "12/20/2005"
Please let me know if this helped, and if I can be of any further
assistance.