Query Dates

  • Thread starter Thread starter Marla
  • Start date Start date
M

Marla

Is there a function in a query to pull records for the
most recent date of a set of records?
Thanks
 
Sure.
Every query can accept Criteria.
So if your data has a field like StartDate you can use criteria like:

Or:
Between Date()-1 and Date()

Or any other combination you want.
 
Back
Top