Need Date formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

What kind of formula would I need in the date field of a query to pull the
next 5 days of orders, including today?
Thanks
Ron
 
What kind of formula would I need in the date field of a query to pull the
next 5 days of orders, including today?
Thanks
Ron

5 days including today?

Between Date() and Date() + 4

If you meant today and 5 days after today
Between Date() and Date() + 5
 
fredg said:
5 days including today?

Between Date() and Date() + 4

If you meant today and 5 days after today
Between Date() and Date() + 5

Note, too, that if your Date field also includes Time (because you used Now
rather than Date to populate them), you'll need to add one more than Fred
indicated.
 
Back
Top