If you are using a parameter you could try criteria that looked like
Do you want 5 days or do you want a week (7 days)? Assuming 5 based on the
subject
Between CDate([Input Start Date]) and DateAdd("d",4,[Input Start Date])
Assuming a week (7 days)
Between CDate([Input Start Date]) and DateAdd("d",6,[Input Start Date])
That assumes that the date field you are checking does not have any added
times to it.
If you mean you want to get the data for the current week(starting with
Sunday and ending with Saturday).
Between DateAdd("d",1-Weekday(Date()),Date()) and
DateAdd("d",7-Weekday(Date()),Date())
--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..