Display Records Created on the same Day

  • Thread starter Thread starter Greg
  • Start date Start date
G

Greg

Each record has a date field, and several others. I want all the
records created on the same date to appear in a form or even better a
report. What is the easiest way to do this?

Greg
 
Set up a query with the criteria int(DateField) = SomeValue.
Dates are stored as floating point numbers, the integer part of which is the
day number.

--
Regards,

Adrian Jansen
J & K MicroSystems
Microcomputer solutions for industrial control
 
Back
Top