You could use a query like the followingSELECT
DatePart("ww", [EventDate], 2, 2) AS LastWeek
, Q.EventDate
, Q.Event
FROM qselEvent AS Q
WHERE (((DatePart("ww", [EventDate], 2, 2)) = DatePart("ww", DateAdd("d", -7, Date()), 2, 2)));it will give you the results for the last calendar week. It is...