Query for things happening this week

L

Laurie

Hello--

I have a table with a date that tells me when a student's suspension is
ending. How can I write a query that will tell me which suspensions are
ending this week and next week automatically, without me having to update the
dates in the query every week?

Thanks, as always, for the invaluable assistance of everyone on here.
 
K

KARL DEWEY

Criteria --
Between DateAdd("d", -Weekday(Date())+1, Date()) AND DateAdd("d",
-Weekday(Date()) +14, Date())
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top