Between [Enter begining date] And [Enter ending date]

  • Thread starter Thread starter ty
  • Start date Start date
T

ty

What expression should I use in order to include the
ending date as well. Right now it must be defaulting to
12:00:01 AM so it does not include the ending date records.
 
Hello Ty,

Try this.

WHERE (((WhatEverTable.field_to_check) Between [StartDate] And [EndDate]));

Rick.
 
Try:

(>= [Enter beginning date]) AND (< [Enter ending date] + 1)
 

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