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.
 
Back
Top