Filtering records by date

S

Sabu

Yea I'm trying to filter a table that has specific due dates, but I want to
run a query that will show the results 7 days before the due date and not
show all the records just the records that have the due date 7 days prior to
the due date. Also wondering if anyone knows how to make it where the query
could send an email notifier to people when a record hits the 7 day prior to
the due date mark? Thank you for all your guys time.
 
V

vanderghast

A criteria under the DueDate like:
= Date( ) AND < Date( ) + 8


should display only the records where DueDate value is today or later, but
not those more than 7 days in the future.



Vanderghast, Access MVP
 
K

KARL DEWEY

just the records that have the due date 7 days prior to the due date.
Huh? How to have 7 days before itself?

Maybe you want this --
Due in 7 days: [Due Date]
<= Date()-7
 

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