Select data between two dates

G

Guest

I have an employee database with FName, LName, Start_Date.
I need to be able to choose two dates and select all people who fall between
these days within working 30/60/90/270/450 days since there start date.

For example, I want to see anyone who has been working for us for
30/60/90/270/450 days between the week of 6/13/05 - 6/27/05. So from the day
they started we can get the number of days to the end date ^ to see how many
days they have been with us using the
DateDiff("d",[Start_Date],#6/27/2005#) function
 
G

Guest

Use the following criteria in your select query --
Between [Enter first date] and [Enter end 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