dates

  • Thread starter Thread starter Khalil Handal
  • Start date Start date
K

Khalil Handal

Hi,
Is there a tutorial about how to find certain records between 2 dates?
 
Hi,
Is there a tutorial about how to find certain records between 2 dates?

SELECT ...
FROM
WHERE MyTable.SomeDate BETWEEN Date1 and Date2;
 
hi,
I should put the dates manualy in this case.
I was wondering if I can put the dates in an unbounded object in a form and
see the records below?
 
You can refer to controls on a form as

SELECT ...
FROM
WHERE MyTable.SomeDate BETWEEN Forms!NameOfForm!NameOfControl1 and
Forms!NameOfForm!NameOfControll2;
 
Thanks Doug,

Douglas J. Steele said:
You can refer to controls on a form as

SELECT ...
FROM
WHERE MyTable.SomeDate BETWEEN Forms!NameOfForm!NameOfControl1 and
Forms!NameOfForm!NameOfControll2;
 

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