Date Query

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

Guest

I am creating a very Simple database that allows users to clock in and out to
validate the shift they are working. How do I create a query to run on a
select date... I need to allow the user to enter the Date span
 
are you using a form? if so, do you have two text boxes one for begindate and
one for enddate? what type of query are you trying to run? what are the
fields in your table? there is not enough information here.
sam
 
I am creating a very Simple database that allows users to clock in and out to
validate the shift they are working. How do I create a query to run on a
select date... I need to allow the user to enter the Date span

Create a Query with a criterion of
= CDate([Enter start date:]) AND < DateAdd("d", 1, [Enter end date:])


John W. Vinson[MVP]
 

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