Date Range Search

  • Thread starter Thread starter RichK
  • Start date Start date
R

RichK

Hello all!

Question:

Is it possible to perform a search by Date Range?

Also, how would I go about this .


TIA to all!


Rich K
 
Hello all!

Question:

Is it possible to perform a search by Date Range?
Certainly.
Also, how would I go about this .

Use a criterion on the date field of

BETWEEN [Start date:] AND [End date:]

or to cover a number of possible problems, but giving equivalent
results:
= CDate([Start date:] AND < DateAdd("d", 1, CDate([End date:]))
 
Back
Top