Date function in a query

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

Guest

I hope this is easy...Have a form with 3 list boxes...an appointment database

First listbox is based on a perimeter query Date() in the appointment date
field.
This lists my appointments for today.

2nd listbox is based on a perimeter query Date()+1 which lists appointments
for tomorrow.

3rd listbox is where I am having the problem with the syntax in the query
How do I return the query which would list from the day after tomorrow for
two weeks. Date() (unkown syntax)

I hope this is easy, thanks
 
between (Date()+2) and (Date()+14)

you can also do this:
= (Date()+2) and <=(Date()+14)

Warm Regards,
Crystal
*
(: have an awesome day :)
*
MVP Access
Remote Programming and Training
strive4peace2006 at yahoo.com
*
 
Thanks, I was close at one time of getting it and thought I had to use the
between
 
you're welcome, Brian ;) happy to help

Warm Regards,
Crystal
*
(: have an awesome day :)
*
MVP Access
Remote Programming and Training
strive4peace2006 at yahoo.com
*
 

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

Back
Top