Date Calc/Criteria

A

Anthony Viscomi

I am trying to filter records via a query; the query has a Date field
"DueDate". I would like to display the records that meet the following date
criteria:

<Now()
Now() but only 10 days into the future

Thanks in advance!
Anthony
 
K

kingston via AccessMonster.com

Do you mean this criteria:

<Now() Or >Now()+10

Anthony said:
I am trying to filter records via a query; the query has a Date field
"DueDate". I would like to display the records that meet the following date
criteria:

<Now()

Thanks in advance!
Anthony
 
K

kingston via AccessMonster.com

In the query, on one criteria line enter <Now() and on another criteria line
enter Now()+10.

Anthony said:
Actually I mean this:

<Now() Or =Now()+10
Do you mean this criteria:
[quoted text clipped - 10 lines]
 
Top